diff options
-rw-r--r-- | includes/Handle.h | 2 | ||||
m--------- | libev | 0 | ||||
-rw-r--r-- | src/Handle.cc | 2 |
3 files changed, 0 insertions, 4 deletions
diff --git a/includes/Handle.h b/includes/Handle.h index 176f4bb..ba710b2 100644 --- a/includes/Handle.h +++ b/includes/Handle.h @@ -76,11 +76,9 @@ class Handle { Future<int16_t> readI16(); Future<int32_t> readI32(); Future<int64_t> readI64(); - Future<uint8_t> readBEU8(); Future<uint16_t> readBEU16(); Future<uint32_t> readBEU32(); Future<uint64_t> readBEU64(); - Future<int8_t> readBEI8(); Future<int16_t> readBEI16(); Future<int32_t> readBEI32(); Future<int64_t> readBEI64(); diff --git a/libev b/libev -Subproject 3a472fbe68ce79f79953d1acf0616c0af0dda39 +Subproject 3f5d360b8421502a2e933211d9463b74d27bb7e 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); } |