[ORC] Fix missing '&' in definition of deleted move-assignment.
authorLang Hames <lhames@gmail.com>
Sun, 12 Sep 2021 04:45:46 +0000 (14:45 +1000)
committerLang Hames <lhames@gmail.com>
Sun, 12 Sep 2021 04:48:04 +0000 (14:48 +1000)
llvm/include/llvm/ExecutionEngine/Orc/SimpleRemoteEPC.h

index 252474a..e1152d5 100644 (file)
@@ -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.