Core/Misc: Added a few stl header includes to Common.h

(cherry picked from commit 89b902b4e0)
(cherry picked from commit c5d36a3183)

Conflicts:
	src/common/Common.h
This commit is contained in:
Shauren
2015-09-19 18:25:43 +02:00
committed by ariel-
parent ed257a4ed4
commit 1348b06a96

View File

@@ -21,7 +21,6 @@
#include "Define.h"
#include <unordered_map>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -32,13 +31,16 @@
#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 <array>
#include "Debugging/Errors.h"