[ORC] Fix some missing fields in OrcRemoteTargetClient's move constructor.

llvm-svn: 280459
This commit is contained in:
Lang Hames 2016-09-02 03:45:44 +00:00
parent e93c477eda
commit a10e516596
1 changed files with 2 additions and 1 deletions

View File

@ -49,7 +49,8 @@ public:
RemoteTrampolineSize(std::move(Other.RemoteTrampolineSize)),
RemoteIndirectStubSize(std::move(Other.RemoteIndirectStubSize)),
AllocatorIds(std::move(Other.AllocatorIds)),
IndirectStubOwnerIds(std::move(Other.IndirectStubOwnerIds)) {}
IndirectStubOwnerIds(std::move(Other.IndirectStubOwnerIds)),
CallbackManager(std::move(Other.CallbackManager)) {}
OrcRemoteTargetClient &operator=(OrcRemoteTargetClient &&) = delete;