summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2018-08-13 10:05:34 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2018-08-13 10:05:34 +0000
commit6679121556e4b3ca3317a52a69dba7134b25d7dc (patch)
tree6bae64b46422b857ffb8cdd45fe69c6d5abfeebf
parentff2dd9095fa6f0d904f2df6da0f3e281d6bd2ed0 (diff)
downloadbcm5719-llvm-6679121556e4b3ca3317a52a69dba7134b25d7dc.tar.gz
bcm5719-llvm-6679121556e4b3ca3317a52a69dba7134b25d7dc.zip
Remove extra semicolon (fixes -Wpedantic warning). NFCI.
llvm-svn: 339549
-rw-r--r--llvm/unittests/Support/TypeTraitsTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/Support/TypeTraitsTest.cpp b/llvm/unittests/Support/TypeTraitsTest.cpp
index 2f7340dd92f..7a3ce537e17 100644
--- a/llvm/unittests/Support/TypeTraitsTest.cpp
+++ b/llvm/unittests/Support/TypeTraitsTest.cpp
@@ -35,7 +35,7 @@ void TrivialityTester() {
IsTriviallyMoveConstructible,
"Mismatch in expected trivial move construction!");
#endif
-};
+}
template void TrivialityTester<int, true, true>();
template void TrivialityTester<void *, true, true>();
OpenPOWER on IntegriCloud