diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-04-08 12:24:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-08 12:24:30 +0200 |
commit | 918de768a550b89da0d232f2040fa618bb10e25a (patch) | |
tree | 5d5e499becefbc8fc4a08e7a06dd0a99a2059887 /modules/gdnative/pluginscript/pluginscript_script.cpp | |
parent | 3cf2bdbd8416ffd39c105bf64fc3544424d0a2cf (diff) | |
parent | ad2127a3e8b274d4946a35cafd31c904a3de294b (diff) | |
download | redot-engine-918de768a550b89da0d232f2040fa618bb10e25a.tar.gz |
Merge pull request #27711 from neikeq/ifdef-clang-tidy
Replace a few #if/#elif with #ifdef and "#elif defined"
Diffstat (limited to 'modules/gdnative/pluginscript/pluginscript_script.cpp')
-rw-r--r-- | modules/gdnative/pluginscript/pluginscript_script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/pluginscript/pluginscript_script.cpp b/modules/gdnative/pluginscript/pluginscript_script.cpp index 3450a032c5..8dbbd2e4eb 100644 --- a/modules/gdnative/pluginscript/pluginscript_script.cpp +++ b/modules/gdnative/pluginscript/pluginscript_script.cpp @@ -34,7 +34,7 @@ #include "pluginscript_instance.h" #include "pluginscript_script.h" -#if DEBUG_ENABLED +#ifdef DEBUG_ENABLED #define __ASSERT_SCRIPT_REASON "Cannot retrieve pluginscript class for this script, is you code correct ?" #define ASSERT_SCRIPT_VALID() \ { \ |