mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-24 08:33:39 +00:00
Add return that was lost somehow in my last commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217810 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9d38b2f76c
commit
46738fc43e
@ -45,6 +45,7 @@ public:
|
||||
AllocaHolder(AllocaHolder &&RHS) : Allocations(std::move(RHS.Allocations)) {}
|
||||
AllocaHolder &operator=(AllocaHolder &&RHS) {
|
||||
Allocations = std::move(RHS.Allocations);
|
||||
return *this;
|
||||
}
|
||||
|
||||
~AllocaHolder() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user