diff options
author | Max Kellermann <max@musicpd.org> | 2020-12-01 17:13:13 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2020-12-01 17:13:13 +0100 |
commit | 2788cf933015471235b0e008b47a3ad160677450 (patch) | |
tree | 78a36b2c8740a350343736b47f8c154a0d094d47 /src/input | |
parent | 92bfdffa42304fb11663c30c2870cc0dfa205a3e (diff) |
input/tidal: add missing include for assert()
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/plugins/TidalTagScanner.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/input/plugins/TidalTagScanner.cxx b/src/input/plugins/TidalTagScanner.cxx index c7584f4ce..da4e6abae 100644 --- a/src/input/plugins/TidalTagScanner.cxx +++ b/src/input/plugins/TidalTagScanner.cxx @@ -23,6 +23,8 @@ #include "tag/Builder.hxx" #include "tag/Tag.hxx" +#include <cassert> + using Wrapper = Yajl::CallbacksWrapper<TidalTagScanner::ResponseParser>; static constexpr yajl_callbacks parse_callbacks = { nullptr, |