mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-12 03:32:10 +00:00
Provide move constructor to appease Visual C++.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243836 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e35d602838
commit
83d21e9cb2
@ -54,7 +54,10 @@ public:
|
||||
|
||||
// If possible, remove this and ~LogicalDylib once the work in the dtor is
|
||||
// moved to members (eg: self-unregistering base layer handles).
|
||||
LogicalDylib(LogicalDylib &&RHS) = default;
|
||||
LogicalDylib(LogicalDylib &&RHS)
|
||||
: BaseLayer(std::move(RHS.BaseLayer)),
|
||||
LogicalModules(std::move(RHS.LogicalModules)),
|
||||
DylibResources(std::move(RHS.DylibResources)) {}
|
||||
|
||||
LogicalModuleHandle createLogicalModule() {
|
||||
LogicalModules.push_back(LogicalModule());
|
||||
|
Loading…
x
Reference in New Issue
Block a user