OSDN Git Service

Remove extra semicolon (fixes -Wpedantic warning). NFCI.
authorSimon Pilgrim <llvm-dev@redking.me.uk>
Mon, 13 Aug 2018 10:05:34 +0000 (10:05 +0000)
committerSimon Pilgrim <llvm-dev@redking.me.uk>
Mon, 13 Aug 2018 10:05:34 +0000 (10:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@339549 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/Support/TypeTraitsTest.cpp

index 2f7340d..7a3ce53 100644 (file)
@@ -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>();