From 063d3696728d110fc07609a934f9aa62e12d9e82 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 19 Oct 2014 00:49:08 +0200 Subject: util/StaticFifoBuffer: make Shift() public --- src/util/StaticFifoBuffer.hxx | 2 -- 1 file changed, 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; } -- cgit v1.2.3