[unittests] STLExtrasTest: Remove an MSVC 2013 workaround, NFCI.

Let's see what the bots have to say about this...

llvm-svn: 285091
This commit is contained in:
Vedant Kumar 2016-10-25 18:11:17 +00:00
parent 2cbace1580
commit 89649e6bdb

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>