summaryrefslogtreecommitdiff
path: root/gold/dwp.cc
diff options
context:
space:
mode:
authorCary Coutant <ccoutant@google.com>2014-07-02 16:12:51 -0700
committerCary Coutant <ccoutant@google.com>2014-09-02 15:44:58 -0700
commit54674d38930c7da1af518510fede6f700f5ca596 (patch)
treeaef7ff0038d0040cafb00667066b48bc874b17bb /gold/dwp.cc
parent9860cbcfb60bdae2f9800e6a6ea5f21ef1507d08 (diff)
downloadbinutils-gdb-54674d38930c7da1af518510fede6f700f5ca596.tar.gz
Make Elf_file::section_name() a const function, so that it can be used in
places where we have only a const Elf_file*. elfcpp/ * elfcpp_file.h (Elf_file::shnum): New const function. (Elf_file::shstrndx): New const function. (Elf_file::large_shndx_offset): New const function. (Elf_file::section_name): Add const attribute. (Elf_file::section_header_offset): Likewise. gold/ * dwp.cc (Sized_relobj_dwo::do_section_name): Add const attribute. * dynobj.h (Sized_dynobj::do_section_name): Likewise. * incremental.cc (Sized_relobj_incr::do_section_name): Likewise. (Sized_incr_dynobj::do_section_name): Likewise. * incremental.h (Sized_relobj_incr::do_section_name): Likewise. (Sized_incr_dynobj::do_section_name): Likewise. * object.h (Object::section_name): Likewise. (Object::do_section_name): Likewise. (Sized_relobj_file::do_section_name): Likewise. * plugin.cc (Sized_pluginobj::do_section_name): Likewise. * plugin.h (Sized_pluginobj::do_section_name): Likewise.
Diffstat (limited to 'gold/dwp.cc')
-rw-r--r--gold/dwp.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/dwp.cc b/gold/dwp.cc
index 359d4b745ab..5401e0c6ee3 100644
--- a/gold/dwp.cc
+++ b/gold/dwp.cc
@@ -272,7 +272,7 @@ class Sized_relobj_dwo : public Sized_relobj<size, big_endian>
// Get the name of a section.
std::string
- do_section_name(unsigned int shndx)
+ do_section_name(unsigned int shndx) const
{ return this->elf_file_.section_name(shndx); }
// Get the size of a section.