mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Revert "[dsymutil] MSVC does generate move constructors, but it should accept to default them"
This reverts commit r231350. It turns out MSVC doesn't generate implicit move constructors and also doesn't accept to default them... See for example http://lab.llvm.org:8011/builders/lldb-x86-windows-msvc/builds/2786 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231351 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0ff2c1e37f
commit
497ca634e1
@ -65,7 +65,10 @@ public:
|
||||
}
|
||||
|
||||
// Workaround MSVC not supporting implicit move ops
|
||||
CompileUnit(CompileUnit &&RHS) = default;
|
||||
CompileUnit(CompileUnit &&RHS)
|
||||
: OrigUnit(RHS.OrigUnit), Info(std::move(RHS.Info)),
|
||||
CUDie(std::move(RHS.CUDie)), StartOffset(RHS.StartOffset),
|
||||
NextUnitOffset(RHS.NextUnitOffset) {}
|
||||
|
||||
DWARFUnit &getOrigUnit() const { return OrigUnit; }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user