diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-04-05 23:20:20 +0200 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2019-04-05 23:41:51 +0200 |
commit | ad2127a3e8b274d4946a35cafd31c904a3de294b (patch) | |
tree | e50a6ac1cbee88aadeb478437bb9ecd114551824 /modules/gdscript/gdscript.cpp | |
parent | 9c3ddf05cb9c59817d885e9daca6e8f61c89dc97 (diff) | |
download | redot-engine-ad2127a3e8b274d4946a35cafd31c904a3de294b.tar.gz |
Replace a few #if/#elif with #ifdef and "#elif defined"
Diffstat (limited to 'modules/gdscript/gdscript.cpp')
-rw-r--r-- | modules/gdscript/gdscript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index 4385cf12ad..0676317f6e 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -597,7 +597,7 @@ Error GDScript::reload(bool p_keep_state) { return err; } } -#if DEBUG_ENABLED +#ifdef DEBUG_ENABLED for (const List<GDScriptWarning>::Element *E = parser.get_warnings().front(); E; E = E->next()) { const GDScriptWarning &warning = E->get(); if (ScriptDebugger::get_singleton()) { |