[llvm] r257377 - [ORC] More MSVC error wrangling.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 11 12:25:25 PST 2016


Author: lhames
Date: Mon Jan 11 14:25:25 2016
New Revision: 257377

URL: http://llvm.org/viewvc/llvm-project?rev=257377&view=rev
Log:
[ORC] More MSVC error wrangling.

Modified:
    llvm/trunk/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h

Modified: llvm/trunk/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h?rev=257377&r1=257376&r2=257377&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h (original)
+++ llvm/trunk/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h Mon Jan 11 14:25:25 2016
@@ -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)),




More information about the llvm-commits mailing list