aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2015-09-19 18:25:43 +0200
committerShauren <shauren.trinity@gmail.com>2015-10-31 18:37:54 +0100
commitc5d36a318337ad8c35cd6d8adac3c97b89a82ee5 (patch)
tree55c3683ca0569083302f3f2560b0f487f48045b4 /src
parentb8e86b9b7a0983b3bc610513531944e68c01c911 (diff)
Core/Misc: Added a few stl header includes to Common.h
(cherry picked from commit 89b902b4e0d0016accd9540ca133519995a0b123)
Diffstat (limited to 'src')
-rw-r--r--src/common/Common.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/Common.h b/src/common/Common.h
index 54b735f0ca5..cd9301e633d 100644
--- a/src/common/Common.h
+++ b/src/common/Common.h
@@ -21,7 +21,6 @@
#include "Define.h"
-#include <unordered_map>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -32,14 +31,17 @@
#include <assert.h>
#include <set>
+#include <unordered_set>
#include <list>
#include <string>
#include <map>
+#include <unordered_map>
#include <queue>
#include <sstream>
#include <algorithm>
#include <memory>
#include <vector>
+#include <array>
#include "Debugging/Errors.h"