diff options
author | Gabor Marton <martongabesz@gmail.com> | 2019-02-20 19:07:36 +0000 |
---|---|---|
committer | Gabor Marton <martongabesz@gmail.com> | 2019-02-20 19:07:36 +0000 |
commit | 2ac9ee3e1383581c9305274cfa7f8a9be9f716b8 (patch) | |
tree | 564295646d952963ad4e03c384b8fe09bd2d9770 /clang/unittests/AST/ASTImporterTest.cpp | |
parent | 3988d5c8fae0d91704d4896e18690ac6b5d5894c (diff) | |
download | bcm5719-llvm-2ac9ee3e1383581c9305274cfa7f8a9be9f716b8.tar.gz bcm5719-llvm-2ac9ee3e1383581c9305274cfa7f8a9be9f716b8.zip |
Fix remaining semicolon pedantic errors for intel
llvm-svn: 354503
Diffstat (limited to 'clang/unittests/AST/ASTImporterTest.cpp')
-rw-r--r-- | clang/unittests/AST/ASTImporterTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/unittests/AST/ASTImporterTest.cpp b/clang/unittests/AST/ASTImporterTest.cpp index 3b5cff3b8f6..5ab03709290 100644 --- a/clang/unittests/AST/ASTImporterTest.cpp +++ b/clang/unittests/AST/ASTImporterTest.cpp @@ -4240,10 +4240,10 @@ ASTIMPORTER_INSTANTIATE_TYPED_TEST_CASE(RedeclChain, FunctionTemplateSpec, , ImportPrototypeAfterImportedDefinition) ASTIMPORTER_INSTANTIATE_TYPED_TEST_CASE(RedeclChain, Function, , - ImportPrototypes); + ImportPrototypes) ASTIMPORTER_INSTANTIATE_TYPED_TEST_CASE(RedeclChain, Class, , ImportPrototypes) ASTIMPORTER_INSTANTIATE_TYPED_TEST_CASE(RedeclChain, Variable, , - ImportPrototypes); + ImportPrototypes) // FIXME Enable this test, once we import function templates chains correctly. ASTIMPORTER_INSTANTIATE_TYPED_TEST_CASE(RedeclChain, FunctionTemplate, DISABLED_, ImportPrototypes) |