aboutsummaryrefslogtreecommitdiff
path: root/sound/audiostream.h
diff options
context:
space:
mode:
Diffstat (limited to 'sound/audiostream.h')
-rw-r--r--sound/audiostream.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/audiostream.h b/sound/audiostream.h
index cb4e986124..b37a79b1e4 100644
--- a/sound/audiostream.h
+++ b/sound/audiostream.h
@@ -40,7 +40,6 @@ protected:
virtual void advance() = 0;
public:
int16 read() { assert(size() > 0); int16 val = readIntern(); advance(); return val; }
-// int16 peek() { assert(size() > 0); return readIntern(); }
virtual int size() const = 0;
bool eof() const { return size() <= 0; }
virtual bool isStereo() const = 0;