From 798d005ccdfb28ff8ec86658674c42db3c789abd Mon Sep 17 00:00:00 2001 From: John Kessenich Date: Tue, 2 Jan 2018 13:07:14 -0700 Subject: [PATCH] Build: Tickle bots to try again... seems like a process hang; all tests passed. --- hlsl/hlslGrammar.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hlsl/hlslGrammar.cpp b/hlsl/hlslGrammar.cpp index d485a110..a891b68f 100755 --- a/hlsl/hlslGrammar.cpp +++ b/hlsl/hlslGrammar.cpp @@ -611,6 +611,8 @@ bool HlslGrammar::acceptFullySpecifiedType(TType& type, TIntermNode*& nodeList, parseContext.transferTypeAttributes(attributes, type); // further, it can create an anonymous instance of the block + // (cbuffer and tbuffer don't consume the next identifier, and + // should set forbidDeclarators) if (forbidDeclarators || peek() != EHTokIdentifier) parseContext.declareBlock(loc, type); } else {