| Index: src/IceELFSection.h
|
| diff --git a/src/IceELFSection.h b/src/IceELFSection.h
|
| index 0ee3f03c99eb72c3a99b78cbb1cbb5f589ac90a7..6b999776d55ea93954df5f6a4e2c630be3bd16e6 100644
|
| --- a/src/IceELFSection.h
|
| +++ b/src/IceELFSection.h
|
| @@ -45,9 +45,9 @@ public:
|
| /// Constructs an ELF section, filling in fields that will be known
|
| /// once the *type* of section is decided. Other fields may be updated
|
| /// incrementally or only after the program is completely defined.
|
| - ELFSection(const IceString &Name, Elf64_Word ShType, Elf64_Xword ShFlags,
|
| + ELFSection(const IceString &MyName, Elf64_Word ShType, Elf64_Xword ShFlags,
|
| Elf64_Xword ShAddralign, Elf64_Xword ShEntsize)
|
| - : Name(Name), Header() {
|
| + : Name(MyName), Header() {
|
| Header.sh_type = ShType;
|
| Header.sh_flags = ShFlags;
|
| Header.sh_addralign = ShAddralign;
|
|
|