[ORC] Fix some missing fields in OrcRemoteTargetClient's move constructor.
llvm-svn: 280459
This commit is contained in:
parent
e93c477eda
commit
a10e516596
|
|
@ -49,7 +49,8 @@ public:
|
||||||
RemoteTrampolineSize(std::move(Other.RemoteTrampolineSize)),
|
RemoteTrampolineSize(std::move(Other.RemoteTrampolineSize)),
|
||||||
RemoteIndirectStubSize(std::move(Other.RemoteIndirectStubSize)),
|
RemoteIndirectStubSize(std::move(Other.RemoteIndirectStubSize)),
|
||||||
AllocatorIds(std::move(Other.AllocatorIds)),
|
AllocatorIds(std::move(Other.AllocatorIds)),
|
||||||
IndirectStubOwnerIds(std::move(Other.IndirectStubOwnerIds)) {}
|
IndirectStubOwnerIds(std::move(Other.IndirectStubOwnerIds)),
|
||||||
|
CallbackManager(std::move(Other.CallbackManager)) {}
|
||||||
|
|
||||||
OrcRemoteTargetClient &operator=(OrcRemoteTargetClient &&) = delete;
|
OrcRemoteTargetClient &operator=(OrcRemoteTargetClient &&) = delete;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue