OSDN Git Service

Remove extra semicolon
authorReid Kleckner <rnk@google.com>
Wed, 5 Oct 2016 21:46:56 +0000 (21:46 +0000)
committerReid Kleckner <rnk@google.com>
Wed, 5 Oct 2016 21:46:56 +0000 (21:46 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@283395 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/ADT/STLExtrasTest.cpp

index 4f49fb7..db344bc 100644 (file)
@@ -137,7 +137,7 @@ template <> struct CanCopy<false> {
 
   CanCopy() = default;
   // FIXME: Use '= default' when we drop MSVC 2013.
-  CanCopy(CanCopy &&) {};
+  CanCopy(CanCopy &&) {}
 };
 
 template <bool Moveable, bool Copyable>