diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-06-09 11:34:43 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-06-09 12:10:05 -0400 |
| commit | 03414e8e848fd99e2ea83f4466a1cf34c2ad6807 (patch) | |
| tree | 5a6f4d14864dd717257ddc40e4bc2501c44590db /Source/Core/VideoCommon/VertexLoader_Normal.cpp | |
| parent | 1d87584d69e3fdd730502127274fcbd85cebd591 (diff) | |
Common: Add header for compiler-specifics
Instead of globbing things under an ambiguous Common.h header, move
compiler-specifics over to Compiler.h. This gives us a dedicated home
for anything related to compilers that we want to make functional across
all compilers that we support.
This moves us a little closer to eliminating Common.h entirely.
Diffstat (limited to 'Source/Core/VideoCommon/VertexLoader_Normal.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader_Normal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/VertexLoader_Normal.cpp b/Source/Core/VideoCommon/VertexLoader_Normal.cpp index 305fd85a6e..2676bc9ba4 100644 --- a/Source/Core/VideoCommon/VertexLoader_Normal.cpp +++ b/Source/Core/VideoCommon/VertexLoader_Normal.cpp @@ -7,8 +7,8 @@ #include <cmath> #include <type_traits> -#include "Common/Common.h" #include "Common/CommonTypes.h" +#include "Common/Compiler.h" #include "VideoCommon/DataReader.h" #include "VideoCommon/VertexLoader.h" |
