diff options
-rw-r--r-- | llvm/unittests/ADT/STLExtrasTest.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/unittests/ADT/STLExtrasTest.cpp b/llvm/unittests/ADT/STLExtrasTest.cpp index 1b00ec3140a..44c0044c25d 100644 --- a/llvm/unittests/ADT/STLExtrasTest.cpp +++ b/llvm/unittests/ADT/STLExtrasTest.cpp @@ -136,8 +136,7 @@ template <> struct CanCopy<false> { CanCopy(const CanCopy &) = delete; CanCopy() = default; - // FIXME: Use '= default' when we drop MSVC 2013. - CanCopy(CanCopy &&) {} + CanCopy(CanCopy &&) = default; }; template <bool Moveable, bool Copyable> |