From: Lang Hames Date: Sun, 12 Sep 2021 04:45:46 +0000 (+1000) Subject: [ORC] Fix missing '&' in definition of deleted move-assignment. X-Git-Tag: upstream/15.0.7~31671 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fcf4e25be56f54594795f270e91c87ee416dcfc5;p=platform%2Fupstream%2Fllvm.git [ORC] Fix missing '&' in definition of deleted move-assignment. --- diff --git a/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h b/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h index 252474a..e1152d5 100644 --- a/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h +++ b/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h @@ -58,7 +58,7 @@ public: SimpleRemoteEPC(const SimpleRemoteEPC &) = delete; SimpleRemoteEPC &operator=(const SimpleRemoteEPC &) = delete; SimpleRemoteEPC(SimpleRemoteEPC &&) = delete; - SimpleRemoteEPC &operator=(SimpleRemoteEPC &) = delete; + SimpleRemoteEPC &operator=(SimpleRemoteEPC &&) = delete; ~SimpleRemoteEPC(); /// Called at the end of the construction process to set up the instance.