mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-09 01:38:03 +00:00
Fix an MSVC build break since it can't synthesize move ctors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243792 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d79f0dd3d4
commit
7c24e4d3c5
@ -30,7 +30,9 @@ private:
|
||||
struct LogicalModule {
|
||||
// Make this move-only to ensure they don't get duplicated across moves of
|
||||
// LogicalDylib or anything like that.
|
||||
LogicalModule(LogicalModule &&) = default;
|
||||
LogicalModule(LogicalModule &&RHS)
|
||||
: Resources(std::move(RHS.Resources)),
|
||||
BaseLayerHandles(std::move(RHS.BaseLayerHandles)) {}
|
||||
LogicalModule() = default;
|
||||
LogicalModuleResources Resources;
|
||||
BaseLayerHandleList BaseLayerHandles;
|
||||
|
Loading…
x
Reference in New Issue
Block a user