Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion elf/data.hh
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ struct Sym<Elf64, Order>
return (stb)(info >> 4);
}

void set_binding(stb v) const
void set_binding(stb v)
{
info = (info & 0xF) | ((unsigned char)v << 4);
}
Expand Down
4 changes: 2 additions & 2 deletions elf/elf++.hh
Original file line number Diff line number Diff line change
Expand Up @@ -423,12 +423,12 @@ public:
return *this;
}

bool operator==(iterator &o) const
bool operator==(const iterator &o) const
{
return pos == o.pos;
}

bool operator!=(iterator &o) const
bool operator!=(const iterator &o) const
{
return pos != o.pos;
}
Expand Down