diff options
author | Vedant Kumar <vsk@apple.com> | 2016-10-25 18:11:17 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2016-10-25 18:11:17 +0000 |
commit | d9f7446c848a778ce2a467182dd2e71185afa03e (patch) | |
tree | d029b9fc38c58cdd8d6892c3387c8071170f29f5 /llvm/unittests/ADT/STLExtrasTest.cpp | |
parent | 29d63027362947e6a22c4d88565b09e25ecea03e (diff) | |
download | bcm5719-llvm-d9f7446c848a778ce2a467182dd2e71185afa03e.tar.gz bcm5719-llvm-d9f7446c848a778ce2a467182dd2e71185afa03e.zip |
[unittests] STLExtrasTest: Remove an MSVC 2013 workaround, NFCI.
Let's see what the bots have to say about this...
llvm-svn: 285091
Diffstat (limited to 'llvm/unittests/ADT/STLExtrasTest.cpp')
-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> |