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 /includes/Handle.h | |
parent | 3c5892053869ed75168f78a68e49f1935a6ecef0 (diff) |
Removing "big endian" 8-bits reads, and updating libev to fix win32 deadlock.
Diffstat (limited to 'includes/Handle.h')
-rw-r--r-- | includes/Handle.h | 2 |
1 files changed, 0 insertions, 2 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(); |