diff options
Diffstat (limited to 'src/rt/circular_buffer.h')
| -rw-r--r-- | src/rt/circular_buffer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/rt/circular_buffer.h b/src/rt/circular_buffer.h index d44721b5..cdd0b03b 100644 --- a/src/rt/circular_buffer.h +++ b/src/rt/circular_buffer.h @@ -24,6 +24,10 @@ public: size_t size(); private: + size_t initial_size(); + void grow(); + void shrink(); + // Size of the buffer in bytes. size_t _buffer_sz; |