0
6
Fork 0

Code formatting.
The build was successful. Details

Dieser Commit ist enthalten in:
Rafal Kupiec 2019-12-14 23:31:47 +01:00
Ursprung ad5784f81f
Commit fd0685f16e
Signiert von: belliash
GPG-Schlüssel-ID: 4E829243E0CFE6B4
1 geänderte Dateien mit 2 neuen und 3 gelöschten Zeilen

Datei anzeigen

@ -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;