[ORC] More MSVC error wrangling.
[oota-llvm.git] / include / llvm / ExecutionEngine / Orc / OrcRemoteTargetClient.h
index 7a4489c1effefc09ed8c8f717a1efdb68b9c8155..ebf581c81fc80efbb44c7d8719e5b62d0ecbe4cc 100644 (file)
@@ -266,6 +266,9 @@ public:
           : Size(Size), Align(Align), Contents(new char[Size + Align - 1]),
             RemoteAddr(0) {}
 
+      Alloc(const Alloc&) = delete;
+      Alloc& operator=(const Alloc&) = delete;
+
       Alloc(Alloc &&Other)
           : Size(std::move(Other.Size)), Align(std::move(Other.Align)),
             Contents(std::move(Other.Contents)),