diff options
| author | Lang Hames <lhames@gmail.com> | 2016-01-11 20:25:25 +0000 |
|---|---|---|
| committer | Lang Hames <lhames@gmail.com> | 2016-01-11 20:25:25 +0000 |
| commit | c8a44d860ec4b7bb2d6d8320b5d2cd237a0887d1 (patch) | |
| tree | 12237fe82b3f3884ba4c6ff655dc71eab525d3a4 /llvm | |
| parent | 54633cfd06fec69f674c88b6d4e06d5094a63c78 (diff) | |
| download | bcm5719-llvm-c8a44d860ec4b7bb2d6d8320b5d2cd237a0887d1.tar.gz bcm5719-llvm-c8a44d860ec4b7bb2d6d8320b5d2cd237a0887d1.zip | |
[ORC] More MSVC error wrangling.
llvm-svn: 257377
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h b/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h index 7a4489c1eff..ebf581c81fc 100644 --- a/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h +++ b/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h @@ -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)), |

