1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-20 01:18:53 +03:00

temporary

This commit is contained in:
Rui Ueyama 2020-10-20 14:46:00 +09:00
parent 4763d64471
commit 573ba32258

View File

@ -271,6 +271,7 @@ public:
class OutputSection : public OutputChunk {
public:
OutputSection(StringRef name) : name(name) {}
OutputSection(const OutputSection &other) : name(other.name) {}
void copy_to(uint8_t *buf) override {
for_each(sections, [&](InputSection *isec) { isec->copy_to(buf); });