Code formatting.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2019-12-14 23:31:47 +01:00
parent ad5784f81f
commit fd0685f16e
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 2 additions and 3 deletions

View File

@ -5013,9 +5013,8 @@ static ProcLangConstruct PH7_GenStateGetStatementHandler(
* Return TRUE if the given ID represent a language construct. FALSE otherwise. * Return TRUE if the given ID represent a language construct. FALSE otherwise.
*/ */
static int PH7_IsLangConstruct(sxu32 nKeywordID) { static int PH7_IsLangConstruct(sxu32 nKeywordID) {
if(nKeywordID == PH7_KEYWORD_EVAL || nKeywordID == PH7_KEYWORD_STATIC if(nKeywordID == PH7_KEYWORD_EVAL || nKeywordID == PH7_KEYWORD_STATIC || nKeywordID == PH7_KEYWORD_NEW || nKeywordID == PH7_KEYWORD_CLONE) {
|| nKeywordID == PH7_KEYWORD_NEW || nKeywordID == PH7_KEYWORD_CLONE) { return TRUE;
return TRUE;
} }
/* Not a language construct */ /* Not a language construct */
return FALSE; return FALSE;