From ad80dcd78f1cde2450b15f7bdf114c52bf1b00ea Mon Sep 17 00:00:00 2001 From: _Redstone_c_ Date: Wed, 9 Feb 2022 17:22:49 +0800 Subject: [PATCH] style(miscellaneous): rename the Misc directory to Miscellaneous --- .../Source/Private/Testing/AssertionMacrosTesting.cpp | 2 +- Redcraft.Utility/Source/Private/Testing/ConceptsTesting.cpp | 2 +- Redcraft.Utility/Source/Private/Testing/TemplatesTesting.cpp | 2 +- Redcraft.Utility/Source/Private/Testing/TypeTraitsTesting.cpp | 2 +- Redcraft.Utility/Source/Public/CoreTypes.h | 4 ++-- .../Source/Public/{Misc => Miscellaneous}/AssertionMacros.h | 2 +- .../Source/Public/{Misc => Miscellaneous}/CoreDefines.h | 0 .../Source/Public/{Misc => Miscellaneous}/Platform.h | 2 +- .../Public/{Misc => Miscellaneous}/PreprocessorHelpers.h | 0 9 files changed, 8 insertions(+), 8 deletions(-) rename Redcraft.Utility/Source/Public/{Misc => Miscellaneous}/AssertionMacros.h (98%) rename Redcraft.Utility/Source/Public/{Misc => Miscellaneous}/CoreDefines.h (100%) rename Redcraft.Utility/Source/Public/{Misc => Miscellaneous}/Platform.h (98%) rename Redcraft.Utility/Source/Public/{Misc => Miscellaneous}/PreprocessorHelpers.h (100%) diff --git a/Redcraft.Utility/Source/Private/Testing/AssertionMacrosTesting.cpp b/Redcraft.Utility/Source/Private/Testing/AssertionMacrosTesting.cpp index 890dbd9..5624558 100644 --- a/Redcraft.Utility/Source/Private/Testing/AssertionMacrosTesting.cpp +++ b/Redcraft.Utility/Source/Private/Testing/AssertionMacrosTesting.cpp @@ -1,5 +1,5 @@ #include "Testing/AssertionMacrosTesting.h" -#include "Misc/AssertionMacros.h" +#include "Miscellaneous/AssertionMacros.h" NAMESPACE_REDCRAFT_BEGIN NAMESPACE_MODULE_BEGIN(Redcraft) diff --git a/Redcraft.Utility/Source/Private/Testing/ConceptsTesting.cpp b/Redcraft.Utility/Source/Private/Testing/ConceptsTesting.cpp index ac575e1..e0f86a7 100644 --- a/Redcraft.Utility/Source/Private/Testing/ConceptsTesting.cpp +++ b/Redcraft.Utility/Source/Private/Testing/ConceptsTesting.cpp @@ -1,5 +1,5 @@ #include "Testing/ConceptsTesting.h" -#include "Misc/AssertionMacros.h" +#include "Miscellaneous/AssertionMacros.h" #include "Concepts/Concepts.h" NAMESPACE_REDCRAFT_BEGIN diff --git a/Redcraft.Utility/Source/Private/Testing/TemplatesTesting.cpp b/Redcraft.Utility/Source/Private/Testing/TemplatesTesting.cpp index 8ec28a6..4508fd3 100644 --- a/Redcraft.Utility/Source/Private/Testing/TemplatesTesting.cpp +++ b/Redcraft.Utility/Source/Private/Testing/TemplatesTesting.cpp @@ -1,5 +1,5 @@ #include "Testing/TemplatesTesting.h" -#include "Misc/AssertionMacros.h" +#include "Miscellaneous/AssertionMacros.h" #include "Templates/Templates.h" NAMESPACE_REDCRAFT_BEGIN diff --git a/Redcraft.Utility/Source/Private/Testing/TypeTraitsTesting.cpp b/Redcraft.Utility/Source/Private/Testing/TypeTraitsTesting.cpp index ba5fd83..2e0e5cd 100644 --- a/Redcraft.Utility/Source/Private/Testing/TypeTraitsTesting.cpp +++ b/Redcraft.Utility/Source/Private/Testing/TypeTraitsTesting.cpp @@ -1,5 +1,5 @@ #include "Testing/TypeTraitsTesting.h" -#include "Misc/AssertionMacros.h" +#include "Miscellaneous/AssertionMacros.h" #include "TypeTraits/TypeTraits.h" #include "Templates/Templates.h" diff --git a/Redcraft.Utility/Source/Public/CoreTypes.h b/Redcraft.Utility/Source/Public/CoreTypes.h index 1b0a8a7..cf59523 100644 --- a/Redcraft.Utility/Source/Public/CoreTypes.h +++ b/Redcraft.Utility/Source/Public/CoreTypes.h @@ -1,4 +1,4 @@ #pragma once -#include "Misc/Platform.h" -#include "Misc/CoreDefines.h" +#include "Miscellaneous/Platform.h" +#include "Miscellaneous/CoreDefines.h" diff --git a/Redcraft.Utility/Source/Public/Misc/AssertionMacros.h b/Redcraft.Utility/Source/Public/Miscellaneous/AssertionMacros.h similarity index 98% rename from Redcraft.Utility/Source/Public/Misc/AssertionMacros.h rename to Redcraft.Utility/Source/Public/Miscellaneous/AssertionMacros.h index bb8d05b..d9d8f03 100644 --- a/Redcraft.Utility/Source/Public/Misc/AssertionMacros.h +++ b/Redcraft.Utility/Source/Public/Miscellaneous/AssertionMacros.h @@ -1,7 +1,7 @@ #pragma once #include "CoreTypes.h" -#include "Misc/PreprocessorHelpers.h" +#include "Miscellaneous/PreprocessorHelpers.h" #undef NDEBUG #include diff --git a/Redcraft.Utility/Source/Public/Misc/CoreDefines.h b/Redcraft.Utility/Source/Public/Miscellaneous/CoreDefines.h similarity index 100% rename from Redcraft.Utility/Source/Public/Misc/CoreDefines.h rename to Redcraft.Utility/Source/Public/Miscellaneous/CoreDefines.h diff --git a/Redcraft.Utility/Source/Public/Misc/Platform.h b/Redcraft.Utility/Source/Public/Miscellaneous/Platform.h similarity index 98% rename from Redcraft.Utility/Source/Public/Misc/Platform.h rename to Redcraft.Utility/Source/Public/Miscellaneous/Platform.h index a21d895..4eb974d 100644 --- a/Redcraft.Utility/Source/Public/Misc/Platform.h +++ b/Redcraft.Utility/Source/Public/Miscellaneous/Platform.h @@ -1,6 +1,6 @@ #pragma once -#include "Misc/CoreDefines.h" +#include "Miscellaneous/CoreDefines.h" #include #include diff --git a/Redcraft.Utility/Source/Public/Misc/PreprocessorHelpers.h b/Redcraft.Utility/Source/Public/Miscellaneous/PreprocessorHelpers.h similarity index 100% rename from Redcraft.Utility/Source/Public/Misc/PreprocessorHelpers.h rename to Redcraft.Utility/Source/Public/Miscellaneous/PreprocessorHelpers.h