From c047077911bbb6acd32eba46ee9296ca20b1e6f5 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Sat, 4 Jan 2014 01:07:01 -0800 Subject: Removing "big endian" 8-bits reads, and updating libev to fix win32 deadlock. --- src/Handle.cc | 2 -- 1 file changed, 2 deletions(-) (limited to 'src') diff --git a/src/Handle.cc b/src/Handle.cc index 79b81c8..0d1fb15 100644 --- a/src/Handle.cc +++ b/src/Handle.cc @@ -138,11 +138,9 @@ Balau::Future Balau::Handle::readI16() { return genericRead ( Balau::Future Balau::Handle::readI32() { return genericRead (this); } Balau::Future Balau::Handle::readI64() { return genericRead (this); } -Balau::Future Balau::Handle::readBEU8() { return genericReadBE (this); } Balau::Future Balau::Handle::readBEU16() { return genericReadBE(this); } Balau::Future Balau::Handle::readBEU32() { return genericReadBE(this); } Balau::Future Balau::Handle::readBEU64() { return genericReadBE(this); } -Balau::Future Balau::Handle::readBEI8() { return genericReadBE (this); } Balau::Future Balau::Handle::readBEI16() { return genericReadBE (this); } Balau::Future Balau::Handle::readBEI32() { return genericReadBE (this); } Balau::Future Balau::Handle::readBEI64() { return genericReadBE (this); } -- cgit v1.2.3