From b8fae2d0dd1d4052be7991e69a2d06404ff37879 Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Mon, 25 Sep 2023 15:05:36 +0200 Subject: [PATCH] pch.h -> pch.hpp Signed-off-by: Simon Rozman --- UnitTests/UnitTests.vcxproj | 4 ++-- UnitTests/UnitTests.vcxproj.filters | 2 +- UnitTests/UnitTests.xcodeproj/project.pbxproj | 4 ++-- UnitTests/hash.cpp | 2 +- UnitTests/main.cpp | 2 +- UnitTests/math.cpp | 2 +- UnitTests/parser.cpp | 2 +- UnitTests/pch.cpp | 2 +- UnitTests/{pch.h => pch.hpp} | 0 UnitTests/ring.cpp | 2 +- UnitTests/sgml.cpp | 2 +- UnitTests/stream.cpp | 2 +- UnitTests/unicode.cpp | 2 +- 13 files changed, 14 insertions(+), 14 deletions(-) rename UnitTests/{pch.h => pch.hpp} (100%) diff --git a/UnitTests/UnitTests.vcxproj b/UnitTests/UnitTests.vcxproj index 2fc27f531..95931c154 100644 --- a/UnitTests/UnitTests.vcxproj +++ b/UnitTests/UnitTests.vcxproj @@ -82,7 +82,7 @@ ..\include;$(VCInstallDir)UnitTest\include;%(AdditionalIncludeDirectories) WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions) true - pch.h + pch.hpp stdcpp17 @@ -131,7 +131,7 @@ - + diff --git a/UnitTests/UnitTests.vcxproj.filters b/UnitTests/UnitTests.vcxproj.filters index 5c9741b7d..d5a92f7e8 100644 --- a/UnitTests/UnitTests.vcxproj.filters +++ b/UnitTests/UnitTests.vcxproj.filters @@ -41,7 +41,7 @@ - + Header Files diff --git a/UnitTests/UnitTests.xcodeproj/project.pbxproj b/UnitTests/UnitTests.xcodeproj/project.pbxproj index c07dec75d..3476eb9c1 100644 --- a/UnitTests/UnitTests.xcodeproj/project.pbxproj +++ b/UnitTests/UnitTests.xcodeproj/project.pbxproj @@ -49,7 +49,7 @@ F437AA902AC1BB64001E2230 /* hash.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = hash.cpp; sourceTree = ""; }; F4B7FBDC2AAF49BC00C6BE9F /* UnitTests */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = UnitTests; sourceTree = BUILT_PRODUCTS_DIR; }; F4C07F4E2AB059300044EDC0 /* math.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = math.cpp; sourceTree = ""; }; - F4C07F502AB059580044EDC0 /* pch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pch.h; sourceTree = ""; }; + F4C07F502AB059580044EDC0 /* pch.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pch.hpp; sourceTree = ""; }; F4C07F512AB059580044EDC0 /* pch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pch.cpp; sourceTree = ""; }; F4C07F532AB05A240044EDC0 /* compat.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = compat.hpp; sourceTree = ""; }; F4C07F542AB05B5B0044EDC0 /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; @@ -109,7 +109,7 @@ F4C07F4E2AB059300044EDC0 /* math.cpp */, F4C07F562AB08E690044EDC0 /* parser.cpp */, F4C07F512AB059580044EDC0 /* pch.cpp */, - F4C07F502AB059580044EDC0 /* pch.h */, + F4C07F502AB059580044EDC0 /* pch.hpp */, F4B7FBDD2AAF49BC00C6BE9F /* Products */, F4C07F592AB08E690044EDC0 /* ring.cpp */, F4C07F582AB08E690044EDC0 /* sgml.cpp */, diff --git a/UnitTests/hash.cpp b/UnitTests/hash.cpp index 0494b9e79..53d2e8898 100644 --- a/UnitTests/hash.cpp +++ b/UnitTests/hash.cpp @@ -3,7 +3,7 @@ Copyright © 2023 Amebis */ -#include "pch.h" +#include "pch.hpp" using namespace std; #ifdef _WIN32 diff --git a/UnitTests/main.cpp b/UnitTests/main.cpp index 681ab2ff5..8ee1385dd 100644 --- a/UnitTests/main.cpp +++ b/UnitTests/main.cpp @@ -3,7 +3,7 @@ Copyright © 2023 Amebis */ -#include "pch.h" +#include "pch.hpp" #include "hash.cpp" #include "math.cpp" #include "parser.cpp" diff --git a/UnitTests/math.cpp b/UnitTests/math.cpp index b0e92c766..6066690bf 100644 --- a/UnitTests/math.cpp +++ b/UnitTests/math.cpp @@ -3,7 +3,7 @@ Copyright © 2023 Amebis */ -#include "pch.h" +#include "pch.hpp" using namespace std; #ifdef _WIN32 diff --git a/UnitTests/parser.cpp b/UnitTests/parser.cpp index 162ae09ce..49e8bb80b 100644 --- a/UnitTests/parser.cpp +++ b/UnitTests/parser.cpp @@ -3,7 +3,7 @@ Copyright © 2023 Amebis */ -#include "pch.h" +#include "pch.hpp" using namespace std; using namespace stdex; diff --git a/UnitTests/pch.cpp b/UnitTests/pch.cpp index 944a2840f..17c4b13da 100644 --- a/UnitTests/pch.cpp +++ b/UnitTests/pch.cpp @@ -3,4 +3,4 @@ Copyright © 2023 Amebis */ -#include "pch.h" +#include "pch.hpp" diff --git a/UnitTests/pch.h b/UnitTests/pch.hpp similarity index 100% rename from UnitTests/pch.h rename to UnitTests/pch.hpp diff --git a/UnitTests/ring.cpp b/UnitTests/ring.cpp index b663910b7..6188c44f3 100644 --- a/UnitTests/ring.cpp +++ b/UnitTests/ring.cpp @@ -3,7 +3,7 @@ Copyright © 2023 Amebis */ -#include "pch.h" +#include "pch.hpp" using namespace std; #ifdef _WIN32 diff --git a/UnitTests/sgml.cpp b/UnitTests/sgml.cpp index 26ce71951..3efb3e2eb 100644 --- a/UnitTests/sgml.cpp +++ b/UnitTests/sgml.cpp @@ -3,7 +3,7 @@ Copyright © 2023 Amebis */ -#include "pch.h" +#include "pch.hpp" using namespace std; #ifdef _WIN32 diff --git a/UnitTests/stream.cpp b/UnitTests/stream.cpp index 49fec2218..5789dea89 100644 --- a/UnitTests/stream.cpp +++ b/UnitTests/stream.cpp @@ -3,7 +3,7 @@ Copyright © 2023 Amebis */ -#include "pch.h" +#include "pch.hpp" using namespace std; using namespace stdex; diff --git a/UnitTests/unicode.cpp b/UnitTests/unicode.cpp index 1f4b6312e..140c650a5 100644 --- a/UnitTests/unicode.cpp +++ b/UnitTests/unicode.cpp @@ -3,7 +3,7 @@ Copyright © 2023 Amebis */ -#include "pch.h" +#include "pch.hpp" using namespace std; #ifdef _WIN32