summaryrefslogtreecommitdiff
path: root/Source/Core/Common/LogManager.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2014-02-20 04:11:52 +0100
committerPierre Bourdon <delroth@gmail.com>2014-02-22 23:37:29 +0100
commit83b7bb64aa5e1ee6b18eaa5d08c17bb5b6c57048 (patch)
tree9b633ca7531de6e36a49216ac2db91e8e7879bae /Source/Core/Common/LogManager.cpp
parent65bbfdb8123b4ea3e15b967b5b03b4b4335c0040 (diff)
Make Common/ mostly IWYU clean (and fix errors in rest of the project detected by this change).
Diffstat (limited to 'Source/Core/Common/LogManager.cpp')
-rw-r--r--Source/Core/Common/LogManager.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/Source/Core/Common/LogManager.cpp b/Source/Core/Common/LogManager.cpp
index a880b66268..860ad49ec4 100644
--- a/Source/Core/Common/LogManager.cpp
+++ b/Source/Core/Common/LogManager.cpp
@@ -2,14 +2,20 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
-#include <algorithm>
+#include <cstdarg>
+#include <cstring>
+#include <mutex>
+#include <ostream>
+#include <set>
+#include <string>
#ifdef ANDROID
#include "Core/Host.h"
#endif
#include "Common/FileUtil.h"
+#include "Common/Log.h"
#include "Common/LogManager.h"
-#include "Common/Thread.h"
+#include "Common/StringUtil.h"
#include "Common/Timer.h"
void GenericLog(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type,