From 59b2213d86e829724bf4aa6a4e7fb5ecb8eaed20 Mon Sep 17 00:00:00 2001 From: Vedant Kumar Date: Tue, 25 Oct 2016 18:11:17 +0000 Subject: [PATCH] [unittests] STLExtrasTest: Remove an MSVC 2013 workaround, NFCI. Let's see what the bots have to say about this... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285091 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/ADT/STLExtrasTest.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/unittests/ADT/STLExtrasTest.cpp b/unittests/ADT/STLExtrasTest.cpp index 1b00ec3140a..44c0044c25d 100644 --- a/unittests/ADT/STLExtrasTest.cpp +++ b/unittests/ADT/STLExtrasTest.cpp @@ -136,8 +136,7 @@ template <> struct CanCopy { CanCopy(const CanCopy &) = delete; CanCopy() = default; - // FIXME: Use '= default' when we drop MSVC 2013. - CanCopy(CanCopy &&) {} + CanCopy(CanCopy &&) = default; }; template -- 2.49.0