diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2014-01-04 01:07:01 -0800 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2014-01-04 01:07:01 -0800 |
commit | c047077911bbb6acd32eba46ee9296ca20b1e6f5 (patch) | |
tree | d3f1f2043634fa89e499be1c7a80dc8c6dd74543 /src | |
parent | 3c5892053869ed75168f78a68e49f1935a6ecef0 (diff) |
Removing "big endian" 8-bits reads, and updating libev to fix win32 deadlock.
Diffstat (limited to 'src')
-rw-r--r-- | src/Handle.cc | 2 |
1 files changed, 0 insertions, 2 deletions
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<int16_t> Balau::Handle::readI16() { return genericRead<int16_t> ( Balau::Future<int32_t> Balau::Handle::readI32() { return genericRead<int32_t> (this); } Balau::Future<int64_t> Balau::Handle::readI64() { return genericRead<int64_t> (this); } -Balau::Future<uint8_t> Balau::Handle::readBEU8() { return genericReadBE<uint8_t> (this); } Balau::Future<uint16_t> Balau::Handle::readBEU16() { return genericReadBE<uint16_t>(this); } Balau::Future<uint32_t> Balau::Handle::readBEU32() { return genericReadBE<uint32_t>(this); } Balau::Future<uint64_t> Balau::Handle::readBEU64() { return genericReadBE<uint64_t>(this); } -Balau::Future<int8_t> Balau::Handle::readBEI8() { return genericReadBE<int8_t> (this); } Balau::Future<int16_t> Balau::Handle::readBEI16() { return genericReadBE<int16_t> (this); } Balau::Future<int32_t> Balau::Handle::readBEI32() { return genericReadBE<int32_t> (this); } Balau::Future<int64_t> Balau::Handle::readBEI64() { return genericReadBE<int64_t> (this); } |