diff options
author | Max Kellermann <max@duempel.org> | 2014-08-19 22:29:52 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-19 22:29:52 +0200 |
commit | bb472206dee0adcff09b2efccfb5795101b45705 (patch) | |
tree | 6c9e7fd526b71113b3991d57cef7a8c944d713bb /src/input/InputStream.hxx | |
parent | d87cf5146e8c64907a0c3ee6f3f36745163c295c (diff) | |
download | mpd-bb472206dee0adcff09b2efccfb5795101b45705.tar.gz mpd-bb472206dee0adcff09b2efccfb5795101b45705.tar.xz mpd-bb472206dee0adcff09b2efccfb5795101b45705.zip |
InputStream: move typedef offset_type to Offset.hxx
Reduce header dependencies.
Diffstat (limited to 'src/input/InputStream.hxx')
-rw-r--r-- | src/input/InputStream.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input/InputStream.hxx b/src/input/InputStream.hxx index 19cf0a2de..15c350103 100644 --- a/src/input/InputStream.hxx +++ b/src/input/InputStream.hxx @@ -21,6 +21,7 @@ #define MPD_INPUT_STREAM_HXX #include "check.h" +#include "Offset.hxx" #include "thread/Mutex.hxx" #include "Compiler.h" @@ -35,7 +36,7 @@ struct Tag; class InputStream { public: - typedef uint64_t offset_type; + typedef ::offset_type offset_type; private: /** |