From e5d92ed1d2ea4f0fbc57dec06af4b347365b23a5 Mon Sep 17 00:00:00 2001 From: innerviewer Date: Fri, 6 Sep 2024 23:27:01 +0200 Subject: [PATCH] (Guards) Renamed the most of old include guards. --- Core/inc/EvoScript/Compilation/CMakeCodeGen.h | 6 +++--- Core/inc/EvoScript/Compilation/Casting.h | 6 +++--- Core/inc/EvoScript/Tools/Finder.h | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Core/inc/EvoScript/Compilation/CMakeCodeGen.h b/Core/inc/EvoScript/Compilation/CMakeCodeGen.h index 91164aa..73ac206 100644 --- a/Core/inc/EvoScript/Compilation/CMakeCodeGen.h +++ b/Core/inc/EvoScript/Compilation/CMakeCodeGen.h @@ -2,8 +2,8 @@ // Created by innerviewer on 10/10/2023. // -#ifndef SRENGINE_CMAKECODEGEN_H -#define SRENGINE_CMAKECODEGEN_H +#ifndef SR_ENGINE_CMAKECODEGEN_H +#define SR_ENGINE_CMAKECODEGEN_H #include @@ -22,4 +22,4 @@ namespace EvoScript { }; } -#endif //SRENGINE_CMAKECODEGEN_H +#endif //SR_ENGINE_CMAKECODEGEN_H diff --git a/Core/inc/EvoScript/Compilation/Casting.h b/Core/inc/EvoScript/Compilation/Casting.h index 1b1dea4..4dc3198 100644 --- a/Core/inc/EvoScript/Compilation/Casting.h +++ b/Core/inc/EvoScript/Compilation/Casting.h @@ -2,8 +2,8 @@ // Created by Monika on 30.10.2021. // -#ifndef GAMEENGINE_CASTING_H -#define GAMEENGINE_CASTING_H +#ifndef SR_ENGINE_CASTING_H +#define SR_ENGINE_CASTING_H #include #include @@ -65,4 +65,4 @@ namespace EvoScript { generator->RegisterCast(fun1to2, #_from, #_to, EvoScript::CastingType::Dynamic); \ generator->RegisterCast(fun2to1, #_to, #_from, EvoScript::CastingType::Dynamic); } \ -#endif //GAMEENGINE_CASTING_H +#endif //SR_ENGINE_CASTING_H diff --git a/Core/inc/EvoScript/Tools/Finder.h b/Core/inc/EvoScript/Tools/Finder.h index e56dc63..5c1cfcc 100644 --- a/Core/inc/EvoScript/Tools/Finder.h +++ b/Core/inc/EvoScript/Tools/Finder.h @@ -2,8 +2,8 @@ // Created by Monika on 31.12.2022. // -#ifndef SRENGINE_FINDER_H -#define SRENGINE_FINDER_H +#ifndef SR_ENGINE_FINDER_H +#define SR_ENGINE_FINDER_H #include #include @@ -123,4 +123,4 @@ namespace EvoScript::Tools { } } -#endif //SRENGINE_FINDER_H +#endif //SR_ENGINE_FINDER_H