aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-01-06 14:54:05 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-01-06 15:07:24 +0900
commit02e518415c140e8271c4f4222fb7e1d42393de66 (patch)
treee82d5ad42e2c2afffdc229ce8ae08a664ae3a8b7
parent2c440249052b0d518fccd953a7dc657f9eed7ab7 (diff)
downloadlibquotient-02e518415c140e8271c4f4222fb7e1d42393de66.tar.gz
libquotient-02e518415c140e8271c4f4222fb7e1d42393de66.zip
Add a missing #include
std::bind belongs to <functional>, don't rely on implicitly including it from other standard headers.
-rw-r--r--room.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/room.cpp b/room.cpp
index 1e159fd5..b647a506 100644
--- a/room.cpp
+++ b/room.cpp
@@ -42,6 +42,7 @@
#include <QtCore/QElapsedTimer>
#include <array>
+#include <functional>
using namespace QMatrixClient;
using namespace std::placeholders;