mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-13 00:11:56 +00:00
Fix the build with MSVC 2013, still cannot default move ctors yet
Ten days. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@283394 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2a4f206513
commit
87bf0196f2
@ -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…
x
Reference in New Issue
Block a user