mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
[dsymutil] MSVC does generate move constructors, but it should accept to default them
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231350 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
315492ba12
commit
0ff2c1e37f
@ -65,10 +65,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Workaround MSVC not supporting implicit move ops
|
// Workaround MSVC not supporting implicit move ops
|
||||||
CompileUnit(CompileUnit &&RHS)
|
CompileUnit(CompileUnit &&RHS) = default;
|
||||||
: OrigUnit(RHS.OrigUnit), Info(std::move(RHS.Info)),
|
|
||||||
CUDie(std::move(RHS.CUDie)), StartOffset(RHS.StartOffset),
|
|
||||||
NextUnitOffset(RHS.NextUnitOffset) {}
|
|
||||||
|
|
||||||
DWARFUnit &getOrigUnit() const { return OrigUnit; }
|
DWARFUnit &getOrigUnit() const { return OrigUnit; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user