summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Version.cpp
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2014-10-21 02:01:38 -0400
committercomex <comexk@gmail.com>2014-10-21 21:22:16 -0400
commit6e774f1b6457939c61c7fe5a0b19c4751e8bb61e (patch)
tree90f41dee979af54ec72f43ab6131758746d42343 /Source/Core/Common/Version.cpp
parent78deebd73281a3c4e451736d6e43bb49b7e7eaed (diff)
Add missing includes where headers depend on other headers having been included first.
This is good hygiene, and also happens to be required to build Dolphin using Clang modules. (Under this setup, each header file becomes a module, and each #include is automatically translated to a module import. Recursive includes still leak through (by default), but modules are compiled independently, and can't depend on defines or types having previously been set up. The main reason to retrofit it onto Dolphin is compilation performance - no more textual includes whatsoever, rather than putting a few blessed common headers into a PCH. Unfortunately, I found multiple Clang bugs while trying to build Dolphin this way, so it's not ready yet, but I can start with this prerequisite.)
Diffstat (limited to 'Source/Core/Common/Version.cpp')
-rw-r--r--Source/Core/Common/Version.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Version.cpp b/Source/Core/Common/Version.cpp
index 6deb0a2441..e8ee180a4e 100644
--- a/Source/Core/Common/Version.cpp
+++ b/Source/Core/Common/Version.cpp
@@ -3,7 +3,7 @@
// Refer to the license.txt file included.
#include "scmrev.h"
-#include "Common/CommonTypes.h"
+#include "Common/Common.h"
#ifdef _DEBUG
#define BUILD_TYPE_STR "Debug "