[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
This commit is contained in:
Vedant Kumar 2016-10-25 18:11:17 +00:00
parent a69463c75b
commit 59b2213d86

View File

@ -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>