forked from OSchip/llvm-project
[LLD] Add a default copy constructor to avoid warnings
This should fix the failure on the PPC64LE LLD bot.
This commit is contained in:
parent
bbc328c624
commit
4d5c8caf9b
|
@ -267,6 +267,7 @@ public:
|
|||
AssociatedIterator, std::forward_iterator_tag, SectionChunk> {
|
||||
public:
|
||||
AssociatedIterator() = default;
|
||||
AssociatedIterator(const AssociatedIterator&) = default;
|
||||
AssociatedIterator(SectionChunk *head) : cur(head) {}
|
||||
AssociatedIterator &operator=(const AssociatedIterator &r) {
|
||||
cur = r.cur;
|
||||
|
|
Loading…
Reference in New Issue