Remove extra semicolon (fixes -Wpedantic warning). NFCI.

llvm-svn: 339549
This commit is contained in:
Simon Pilgrim 2018-08-13 10:05:34 +00:00
parent ff2dd9095f
commit 6679121556
1 changed files with 1 additions and 1 deletions

View 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>();