diff options
-rw-r--r-- | src/util/StaticFifoBuffer.hxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/util/StaticFifoBuffer.hxx b/src/util/StaticFifoBuffer.hxx index c1b64bb1e..40668d152 100644 --- a/src/util/StaticFifoBuffer.hxx +++ b/src/util/StaticFifoBuffer.hxx @@ -59,7 +59,6 @@ public: constexpr StaticFifoBuffer():head(0), tail(0) {} -protected: void Shift() { if (head == 0) return; @@ -74,7 +73,6 @@ protected: head = 0; } -public: void Clear() { head = tail = 0; } |