mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Spell out a move ctor. Even the 2013 vintage of MSVC cannot synthesize move ctors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217879 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a9478c4a96
commit
8be86aaf82
@ -51,7 +51,7 @@ public:
|
||||
return *this;
|
||||
}
|
||||
#else
|
||||
AllocaHolder(AllocaHolder &&RHS) = default;
|
||||
AllocaHolder(AllocaHolder &&RHS) : Allocations(std::move(RHS.Allocations)) {}
|
||||
#endif
|
||||
|
||||
~AllocaHolder() {
|
||||
|
Loading…
Reference in New Issue
Block a user