diff options
author | Max Kellermann <max@duempel.org> | 2015-12-28 14:20:23 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-12-28 14:20:37 +0100 |
commit | 48693250a46f99f226965ed2375a7b761631a8f8 (patch) | |
tree | 201ad852da02e1c037f8eef3b5029d6a7162dbc1 /src/command/CommandError.hxx | |
parent | 570dcb63092c73e4f14236ded401698c6663416d (diff) |
command/Error: no std::exception_ptr forward declaration
This breaks on some standard library implementations.
Diffstat (limited to 'src/command/CommandError.hxx')
-rw-r--r-- | src/command/CommandError.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/command/CommandError.hxx b/src/command/CommandError.hxx index 4fb1bf8bc..2039a2783 100644 --- a/src/command/CommandError.hxx +++ b/src/command/CommandError.hxx @@ -23,9 +23,7 @@ #include "CommandResult.hxx" #include "PlaylistError.hxx" -namespace std { - class exception_ptr; -} +#include <exception> class Response; class Error; |