aboutsummaryrefslogtreecommitdiffstats
path: root/src/input/TextInputStream.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-08-06 16:54:53 +0200
committerMax Kellermann <max@duempel.org>2014-08-06 17:29:05 +0200
commitea26da0be7f4776d894874d68e468586b3be0efa (patch)
tree43475dcf6fce9f5bfd2bdeb5ede5f5252dcec21f /src/input/TextInputStream.hxx
parent1f3d3970f672ec9b200ed358e2d02c45c97c34eb (diff)
downloadmpd-ea26da0be7f4776d894874d68e468586b3be0efa.tar.gz
mpd-ea26da0be7f4776d894874d68e468586b3be0efa.tar.xz
mpd-ea26da0be7f4776d894874d68e468586b3be0efa.zip
util/FifoBuffer: rename to StaticFifoBuffer
Diffstat (limited to 'src/input/TextInputStream.hxx')
-rw-r--r--src/input/TextInputStream.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input/TextInputStream.hxx b/src/input/TextInputStream.hxx
index c67423da1..873ecdbda 100644
--- a/src/input/TextInputStream.hxx
+++ b/src/input/TextInputStream.hxx
@@ -20,7 +20,7 @@
#ifndef MPD_TEXT_INPUT_STREAM_HXX
#define MPD_TEXT_INPUT_STREAM_HXX
-#include "util/FifoBuffer.hxx"
+#include "util/StaticFifoBuffer.hxx"
#include <string>
@@ -28,7 +28,7 @@ class InputStream;
class TextInputStream {
InputStream &is;
- FifoBuffer<char, 4096> buffer;
+ StaticFifoBuffer<char, 4096> buffer;
public:
/**