DecoderBuffer: make "decoder" const

This commit is contained in:
Max Kellermann 2014-09-21 14:02:39 +02:00
parent ed70836057
commit 13b66a77c7

View File

@ -26,7 +26,7 @@
#include <assert.h>
struct DecoderBuffer {
Decoder *decoder;
Decoder *const decoder;
InputStream &is;
DynamicFifoBuffer<uint8_t> buffer;