From f95ea1677cc5c52790e1342aa6d3d6bba950b8be Mon Sep 17 00:00:00 2001 From: Nicolay Korslund Date: Fri, 13 Aug 2010 14:43:13 +0200 Subject: [PATCH] Compiler warning fix --- sound/sources/stream_source.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/sources/stream_source.hpp b/sound/sources/stream_source.hpp index e4863545e9..43c605a004 100644 --- a/sound/sources/stream_source.hpp +++ b/sound/sources/stream_source.hpp @@ -9,8 +9,8 @@ namespace Sound { /// A class for reading raw samples directly from a stream. class Stream2Samples : public SampleSource { - int32_t rate, channels, bits; Mangle::Stream::StreamPtr inp; + int32_t rate, channels, bits; public: Stream2Samples(Mangle::Stream::StreamPtr _inp, int32_t _rate, int32_t _channels, int32_t _bits)