diff options
author | randomdan <randomdan@localhost> | 2013-06-21 00:35:26 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2013-06-21 00:35:26 +0000 |
commit | 3e272a84cc55be2213e02e52485888b93d4b39e9 (patch) | |
tree | 37edb686a3cc59dd314d2a725552a25ced7c014a /project2/common/variables | |
parent | Split the plugable stuff into its own files/classes (diff) | |
download | project2-3e272a84cc55be2213e02e52485888b93d4b39e9.tar.bz2 project2-3e272a84cc55be2213e02e52485888b93d4b39e9.tar.xz project2-3e272a84cc55be2213e02e52485888b93d4b39e9.zip |
Fix the gch usage quirk with a silly hack and a load of small changes
Diffstat (limited to 'project2/common/variables')
-rw-r--r-- | project2/common/variables/config.cpp | 2 | ||||
-rw-r--r-- | project2/common/variables/localparam.cpp | 2 | ||||
-rw-r--r-- | project2/common/variables/lookup.cpp | 2 | ||||
-rw-r--r-- | project2/common/variables/param.cpp | 2 | ||||
-rw-r--r-- | project2/common/variables/session.cpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/project2/common/variables/config.cpp b/project2/common/variables/config.cpp index 5b38713..51759d5 100644 --- a/project2/common/variables/config.cpp +++ b/project2/common/variables/config.cpp @@ -1,4 +1,4 @@ -#include "../pch.hpp" +#include <pch.hpp> #include "../variables.h" #include "../scriptLoader.h" #include "../scriptStorage.h" diff --git a/project2/common/variables/localparam.cpp b/project2/common/variables/localparam.cpp index 2f09b08..1b789a7 100644 --- a/project2/common/variables/localparam.cpp +++ b/project2/common/variables/localparam.cpp @@ -1,4 +1,4 @@ -#include "../pch.hpp" +#include <pch.hpp> #include "../variables.h" #include "../scriptLoader.h" #include "../scriptStorage.h" diff --git a/project2/common/variables/lookup.cpp b/project2/common/variables/lookup.cpp index 19884e5..2a96338 100644 --- a/project2/common/variables/lookup.cpp +++ b/project2/common/variables/lookup.cpp @@ -1,4 +1,4 @@ -#include "../pch.hpp" +#include <pch.hpp> #include "../variables.h" #include <safeMapFind.h> #include "../logger.h" diff --git a/project2/common/variables/param.cpp b/project2/common/variables/param.cpp index c985868..7292b0a 100644 --- a/project2/common/variables/param.cpp +++ b/project2/common/variables/param.cpp @@ -1,4 +1,4 @@ -#include "../pch.hpp" +#include <pch.hpp> #include "../variables.h" #include "../scriptLoader.h" #include "../scriptStorage.h" diff --git a/project2/common/variables/session.cpp b/project2/common/variables/session.cpp index 2e26a12..fc33d8e 100644 --- a/project2/common/variables/session.cpp +++ b/project2/common/variables/session.cpp @@ -1,4 +1,4 @@ -#include "../pch.hpp" +#include <pch.hpp> #include "../variables.h" #include "../scriptLoader.h" #include "../scriptStorage.h" |