diff --git a/bytes_ostream.hh b/bytes_ostream.hh index 1fa3fbc7df..8c55c7d8fe 100644 --- a/bytes_ostream.hh +++ b/bytes_ostream.hh @@ -211,6 +211,10 @@ public: return _size; } + bool empty() const { + return _size == 0; + } + void reserve(size_t size) { // FIXME: implement }