зеркало из https://github.com/stride3d/xkslang.git
Add initialization in case it is causing the Apple Clang release failure.
This commit is contained in:
Родитель
ffc31cdc5c
Коммит
7199a6d1a9
|
@ -2626,6 +2626,8 @@ bool HlslGrammar::acceptFunctionBody(TFunctionDeclarator& declarator, TIntermNod
|
|||
//
|
||||
bool HlslGrammar::acceptParenExpression(TIntermTyped*& expression)
|
||||
{
|
||||
expression = nullptr;
|
||||
|
||||
// LEFT_PAREN
|
||||
if (! acceptTokenClass(EHTokLeftParen))
|
||||
expected("(");
|
||||
|
@ -3674,7 +3676,6 @@ bool HlslGrammar::acceptIterationStatement(TIntermNode*& statement, const TAttri
|
|||
}
|
||||
|
||||
// LEFT_PAREN condition RIGHT_PAREN
|
||||
TIntermTyped* condition;
|
||||
if (! acceptParenExpression(condition))
|
||||
return false;
|
||||
condition = parseContext.convertConditionalExpression(loc, condition);
|
||||
|
|
Загрузка…
Ссылка в новой задаче