Ran 'git cl format' over repo, found some nits

Change-Id: I5774e4cfc8a570522ac6533d69b5b87f7e5e0b6c
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/31081
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Reviewed-by: dan sinclair <dsinclair@chromium.org>
This commit is contained in:
Ryan Harrison 2020-10-27 18:14:29 +00:00 committed by Commit Bot service account
parent fcbc6efa8f
commit 70a3f152f2
2 changed files with 4 additions and 2 deletions

View File

@ -206,7 +206,7 @@ TEST_F(SpvParserTest, Impl_Source_InvalidId) {
}
TEST_F(SpvParserTest, Impl_IsValidIdentifier) {
EXPECT_FALSE(ParserImpl::IsValidIdentifier("")); // empty
EXPECT_FALSE(ParserImpl::IsValidIdentifier("")); // empty
EXPECT_FALSE(
ParserImpl::IsValidIdentifier("_")); // leading underscore, but ok later
EXPECT_FALSE(

View File

@ -12,9 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#include <cassert>
#include "src/validator_impl.h"
#include <cassert>
#include <unordered_set>
#include "src/ast/call_statement.h"
#include "src/ast/function.h"
#include "src/ast/int_literal.h"