diff options
author | Max Kellermann <max@duempel.org> | 2014-08-13 13:00:37 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-13 13:00:37 +0200 |
commit | b44957ad914296cb53456d3fb56b380d81ec5fb6 (patch) | |
tree | 95579f443c3f6d2d72fa2a5ca6804b95daa3d0b8 /src/pcm/PcmExport.cxx | |
parent | a049f972ecdb1756a83b1d1959d79b65080afc54 (diff) |
PcmExport: add missing <iterator> include
For the range-based loop on a ConstBuffer object.
Diffstat (limited to 'src/pcm/PcmExport.cxx')
-rw-r--r-- | src/pcm/PcmExport.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pcm/PcmExport.cxx b/src/pcm/PcmExport.cxx index 26644a71a..5f567f3c6 100644 --- a/src/pcm/PcmExport.cxx +++ b/src/pcm/PcmExport.cxx @@ -24,6 +24,8 @@ #include "util/ByteReverse.hxx" #include "util/ConstBuffer.hxx" +#include <iterator> + void PcmExport::Open(SampleFormat sample_format, unsigned _channels, bool _dsd_usb, bool _shift8, bool _pack, bool _reverse_endian) |