4
0
mirror of https://github.com/QuasarApp/ELFIO.git synced 2025-05-08 01:09:33 +00:00

Add const

This commit is contained in:
Semi Malinen 2014-10-30 14:47:14 +02:00
parent 695a05dc5d
commit 5000c533ba

@ -76,13 +76,13 @@ class symbol_section_accessor
//------------------------------------------------------------------------------
bool
get_symbol( std::string& name,
Elf64_Addr& value,
Elf_Xword& size,
unsigned char& bind,
unsigned char& type,
Elf_Half& section_index,
unsigned char& other ) const
get_symbol( const std::string& name,
Elf64_Addr& value,
Elf_Xword& size,
unsigned char& bind,
unsigned char& type,
Elf_Half& section_index,
unsigned char& other ) const
{
bool ret = false;