Fix build with GCC 10 by adding missing include

Fixes the following error:
./mpdpp.h:438:15: error: ‘runtime_error’ is not a member of ‘std’
This commit is contained in:
Louis Sautier
2020-05-09 14:31:52 +02:00
parent bdec1eb009
commit 399e0f4700

View File

@@ -25,6 +25,7 @@
#include <exception>
#include <random>
#include <set>
#include <stdexcept>
#include <vector>
#include <mpd/client.h>