diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-03-06 09:20:03 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2017-03-06 09:20:03 +0900 |
commit | 2cc1fc52baa28c4896080069a985c200517ad7cd (patch) | |
tree | 0fc990382e57a337f9a66566de2bd7350c9465de | |
parent | 988630bee00d54d64038c8216c64117e9ee02c61 (diff) | |
download | libquotient-2cc1fc52baa28c4896080069a985c200517ad7cd.tar.gz libquotient-2cc1fc52baa28c4896080069a985c200517ad7cd.zip |
Fixed building with MSVC
-rw-r--r-- | room.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -18,11 +18,12 @@ #include "room.h" +#include <array> + #include <QtCore/QHash> #include <QtCore/QJsonArray> #include <QtCore/QStringBuilder> // for efficient string concats (operator%) #include <QtCore/QDebug> -#include <algorithm> #include "connection.h" #include "state.h" |