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:
parent
fc304f5238
commit
4f9ae05be2
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user