1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Add return that was lost somehow in my last commit.

llvm-svn: 217810
This commit is contained in:
Benjamin Kramer 2014-09-15 19:25:55 +00:00
parent 711251555a
commit 7ab9cb47b0

View File

@ -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() {