aboutsummaryrefslogtreecommitdiff
path: root/src/common/Common.h
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2016-04-06 18:40:41 +0200
committerShauren <shauren.trinity@gmail.com>2016-04-09 18:25:53 +0200
commit836788ed3c0225955070550de2944046873e68cc (patch)
tree05adb8124952977aa49ece5a9b9a648fba7f5e30 /src/common/Common.h
parent39abb8acb3a27c543e2ffb7b696ad1c2945b7174 (diff)
Core/Misc: MSVC /W4 warning fixes
(cherry picked from commit 08c27d3205a6dc825512757ab88acf0e4379fe75)
Diffstat (limited to 'src/common/Common.h')
-rw-r--r--src/common/Common.h33
1 files changed, 17 insertions, 16 deletions
diff --git a/src/common/Common.h b/src/common/Common.h
index 4ab5ae867b9..8216c519746 100644
--- a/src/common/Common.h
+++ b/src/common/Common.h
@@ -21,27 +21,28 @@
#include "Define.h"
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <time.h>
-#include <cmath>
-#include <errno.h>
-#include <signal.h>
-#include <assert.h>
-
-#include <set>
-#include <unordered_set>
+#include <algorithm>
+#include <array>
+#include <exception>
#include <list>
-#include <string>
#include <map>
-#include <unordered_map>
+#include <memory>
#include <queue>
+#include <set>
#include <sstream>
-#include <algorithm>
-#include <memory>
+#include <string>
+#include <type_traits>
+#include <unordered_map>
+#include <unordered_set>
#include <vector>
-#include <array>
+
+#include <cmath>
+#include <cstdio>
+#include <cstdlib>
+#include <cstring>
+#include <ctime>
+#include <cerrno>
+#include <csignal>
#include <boost/functional/hash.hpp>