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’
master
Louis Sautier 6 years ago
parent bdec1eb009
commit 399e0f4700
No known key found for this signature in database
GPG Key ID: A777716B30AE82E3
  1. 1
      src/mpdpp.h

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

Loading…
Cancel
Save