aboutsummaryrefslogtreecommitdiff
path: root/ByteBuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'ByteBuffer.h')
-rw-r--r--ByteBuffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ByteBuffer.h b/ByteBuffer.h
index d1d02bb..a572097 100644
--- a/ByteBuffer.h
+++ b/ByteBuffer.h
@@ -28,7 +28,7 @@ public:
ByteBuffer(const uint8_t *bytes, size_t capacity, size_t zero, size_t size);
inline size_t getSize() const {
- DF << "end=" << (uint64_t)end << ", zero=" << (uint64_t)zero << ", size=" << (end - zero);
+// DF << "end=" << (uint64_t)end << ", zero=" << (uint64_t)zero << ", size=" << (end - zero);
return end - zero;
}
@@ -46,7 +46,7 @@ public:
}
inline void skip(size_t length) {
- checkAndUpdateEnd(length);
+// checkAndUpdateEnd(length);
ptr += length;
}