From bb472206dee0adcff09b2efccfb5795101b45705 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 19 Aug 2014 22:29:52 +0200 Subject: InputStream: move typedef offset_type to Offset.hxx Reduce header dependencies. --- src/decoder/plugins/SndfileDecoderPlugin.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/decoder/plugins/SndfileDecoderPlugin.cxx') diff --git a/src/decoder/plugins/SndfileDecoderPlugin.cxx b/src/decoder/plugins/SndfileDecoderPlugin.cxx index 5aad2f16c..1e84d8be5 100644 --- a/src/decoder/plugins/SndfileDecoderPlugin.cxx +++ b/src/decoder/plugins/SndfileDecoderPlugin.cxx @@ -70,7 +70,7 @@ sndfile_vio_seek(sf_count_t _offset, int whence, void *user_data) SndfileInputStream &sis = *(SndfileInputStream *)user_data; InputStream &is = sis.is; - InputStream::offset_type offset = _offset; + offset_type offset = _offset; switch (whence) { case SEEK_SET: break; -- cgit v1.2.3