1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Replace a few #if/#elif with #ifdef and "#elif defined"

This commit is contained in:
Ignacio Etcheverry
2019-04-05 23:20:20 +02:00
parent 9c3ddf05cb
commit ad2127a3e8
11 changed files with 17 additions and 17 deletions

View File

@@ -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()) {