[llvm] fcf4e25 - [ORC] Fix missing '&' in definition of deleted move-assignment.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sat Sep 11 21:51:33 PDT 2021


Author: Lang Hames
Date: 2021-09-12T14:48:04+10:00
New Revision: fcf4e25be56f54594795f270e91c87ee416dcfc5

URL: https://github.com/llvm/llvm-project/commit/fcf4e25be56f54594795f270e91c87ee416dcfc5
DIFF: https://github.com/llvm/llvm-project/commit/fcf4e25be56f54594795f270e91c87ee416dcfc5.diff

LOG: [ORC] Fix missing '&' in definition of deleted move-assignment.

Added: 
    

Modified: 
    llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h b/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h
index 252474abecbd..e1152d52c6d6 100644
--- a/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h
+++ b/llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h
@@ -58,7 +58,7 @@ class SimpleRemoteEPC : public ExecutorProcessControl,
   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.


        


More information about the llvm-commits mailing list