mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
[ORC] Fix some missing fields in OrcRemoteTargetClient's move constructor.
llvm-svn: 280459
This commit is contained in:
parent
60a96736bc
commit
a047e3a956
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user