diff options
author | Max Kellermann <max@duempel.org> | 2016-03-30 00:35:25 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-03-30 00:35:25 +0200 |
commit | 2deb5b7fec3ccff29594e6b04eb07701e40e8511 (patch) | |
tree | edb0f51c6bd1d61f0d322cd194810c75301b55b6 /src/sticker | |
parent | 2fd51826087897f2ce5bfd9ca27c1e167a3e4284 (diff) |
sticker/SongSticker: add missing <stdexcept> include
For std::runtime_error. See http://bugs.musicpd.org/view.php?id=4509
Diffstat (limited to 'src/sticker')
-rw-r--r-- | src/sticker/SongSticker.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/sticker/SongSticker.cxx b/src/sticker/SongSticker.cxx index f144327cf..e90e13af5 100644 --- a/src/sticker/SongSticker.cxx +++ b/src/sticker/SongSticker.cxx @@ -25,6 +25,8 @@ #include "util/Error.hxx" #include "util/Alloc.hxx" +#include <stdexcept> + #include <string.h> #include <stdlib.h> |