diff options
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/Interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h index 282b1e04bea..befd5c76d83 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h +++ b/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h @@ -51,7 +51,7 @@ public: return *this; } #else - AllocaHolder(AllocaHolder &&RHS) = default; + AllocaHolder(AllocaHolder &&RHS) : Allocations(std::move(RHS.Allocations)) {} #endif ~AllocaHolder() { |