From 573ba3225875f6b2b4d3a530c3c6d2f9cee386a0 Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Tue, 20 Oct 2020 14:46:00 +0900 Subject: [PATCH] temporary --- chibild.h | 1 + 1 file changed, 1 insertion(+) diff --git a/chibild.h b/chibild.h index 4cc94688..2c0d9378 100644 --- a/chibild.h +++ b/chibild.h @@ -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); });