From 2448653fa02630b09d201b7951b5520f0734fb24 Mon Sep 17 00:00:00 2001 From: _Redstone_c_ Date: Wed, 16 Mar 2022 09:58:23 +0800 Subject: [PATCH] style(miscellaneous): move Placeholders.h from Templates to Miscellaneous --- Redcraft.Utility/Source/Public/CoreTypes.h | 1 + .../Source/Public/{Templates => Miscellaneous}/Placeholders.h | 0 Redcraft.Utility/Source/Public/Templates/Optional.h | 1 - Redcraft.Utility/Source/Public/Templates/Templates.h | 1 - Redcraft.Utility/Source/Public/Templates/Variant.h | 1 - 5 files changed, 1 insertion(+), 3 deletions(-) rename Redcraft.Utility/Source/Public/{Templates => Miscellaneous}/Placeholders.h (100%) diff --git a/Redcraft.Utility/Source/Public/CoreTypes.h b/Redcraft.Utility/Source/Public/CoreTypes.h index cf59523..c7342db 100644 --- a/Redcraft.Utility/Source/Public/CoreTypes.h +++ b/Redcraft.Utility/Source/Public/CoreTypes.h @@ -2,3 +2,4 @@ #include "Miscellaneous/Platform.h" #include "Miscellaneous/CoreDefines.h" +#include "Miscellaneous/Placeholders.h" diff --git a/Redcraft.Utility/Source/Public/Templates/Placeholders.h b/Redcraft.Utility/Source/Public/Miscellaneous/Placeholders.h similarity index 100% rename from Redcraft.Utility/Source/Public/Templates/Placeholders.h rename to Redcraft.Utility/Source/Public/Miscellaneous/Placeholders.h diff --git a/Redcraft.Utility/Source/Public/Templates/Optional.h b/Redcraft.Utility/Source/Public/Templates/Optional.h index 16eda27..478c965 100644 --- a/Redcraft.Utility/Source/Public/Templates/Optional.h +++ b/Redcraft.Utility/Source/Public/Templates/Optional.h @@ -2,7 +2,6 @@ #include "CoreTypes.h" #include "Templates/Compare.h" -#include "Templates/Placeholders.h" #include "Concepts/Comparable.h" #include "TypeTraits/TypeTraits.h" #include "Miscellaneous/AssertionMacros.h" diff --git a/Redcraft.Utility/Source/Public/Templates/Templates.h b/Redcraft.Utility/Source/Public/Templates/Templates.h index 636b451..7874eaa 100644 --- a/Redcraft.Utility/Source/Public/Templates/Templates.h +++ b/Redcraft.Utility/Source/Public/Templates/Templates.h @@ -2,7 +2,6 @@ #include "CoreTypes.h" #include "Templates/Utility.h" -#include "Templates/Placeholders.h" #include "Templates/Container.h" #include "Templates/Noncopyable.h" #include "Templates/Invoke.h" diff --git a/Redcraft.Utility/Source/Public/Templates/Variant.h b/Redcraft.Utility/Source/Public/Templates/Variant.h index 7fe3c79..55c751b 100644 --- a/Redcraft.Utility/Source/Public/Templates/Variant.h +++ b/Redcraft.Utility/Source/Public/Templates/Variant.h @@ -3,7 +3,6 @@ #include "CoreTypes.h" #include "Templates/Invoke.h" #include "Templates/Utility.h" -#include "Templates/Placeholders.h" #include "TypeTraits/TypeTraits.h" NAMESPACE_REDCRAFT_BEGIN