[ORC] More MSVC error wrangling.

llvm-svn: 257377
This commit is contained in:
Lang Hames 2016-01-11 20:25:25 +00:00
parent 54633cfd06
commit c8a44d860e
1 changed files with 3 additions and 0 deletions

View File

@ -266,6 +266,9 @@ public:
: Size(Size), Align(Align), Contents(new char[Size + Align - 1]), : Size(Size), Align(Align), Contents(new char[Size + Align - 1]),
RemoteAddr(0) {} RemoteAddr(0) {}
Alloc(const Alloc&) = delete;
Alloc& operator=(const Alloc&) = delete;
Alloc(Alloc &&Other) Alloc(Alloc &&Other)
: Size(std::move(Other.Size)), Align(std::move(Other.Align)), : Size(std::move(Other.Size)), Align(std::move(Other.Align)),
Contents(std::move(Other.Contents)), Contents(std::move(Other.Contents)),