1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Fix the build with MSVC 2013, still cannot default move ctors yet

Ten days.

llvm-svn: 283394
This commit is contained in:
Reid Kleckner 2016-10-05 21:44:46 +00:00
parent fc304f5238
commit 4f9ae05be2

View File

@ -136,7 +136,8 @@ template <> struct CanCopy<false> {
CanCopy(const CanCopy &) = delete;
CanCopy() = default;
CanCopy(CanCopy &&) = default;
// FIXME: Use '= default' when we drop MSVC 2013.
CanCopy(CanCopy &&) {};
};
template <bool Moveable, bool Copyable>