diff --git a/engine/compiler.c b/engine/compiler.c index 95644b7..4f26856 100644 --- a/engine/compiler.c +++ b/engine/compiler.c @@ -5013,9 +5013,8 @@ static ProcLangConstruct PH7_GenStateGetStatementHandler( * Return TRUE if the given ID represent a language construct. FALSE otherwise. */ static int PH7_IsLangConstruct(sxu32 nKeywordID) { - if(nKeywordID == PH7_KEYWORD_EVAL || nKeywordID == PH7_KEYWORD_STATIC - || nKeywordID == PH7_KEYWORD_NEW || nKeywordID == PH7_KEYWORD_CLONE) { - return TRUE; + if(nKeywordID == PH7_KEYWORD_EVAL || nKeywordID == PH7_KEYWORD_STATIC || nKeywordID == PH7_KEYWORD_NEW || nKeywordID == PH7_KEYWORD_CLONE) { + return TRUE; } /* Not a language construct */ return FALSE;