From 4ae41d8d209f31eda3e148aacaa3cc93b51c5e5b Mon Sep 17 00:00:00 2001 From: jimblandy Date: Fri, 5 Oct 2012 22:07:48 +0000 Subject: Comment out unused arguments in definitions, as required by the Google C++ Style Guide. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A=Rafael Ávila de Espíndola R=jimb at https://breakpad.appspot. com/479003 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1064 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/common/dwarf_cu_to_module.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/common/dwarf_cu_to_module.cc') diff --git a/src/common/dwarf_cu_to_module.cc b/src/common/dwarf_cu_to_module.cc index abcf36f8..1f1a1743 100644 --- a/src/common/dwarf_cu_to_module.cc +++ b/src/common/dwarf_cu_to_module.cc @@ -526,7 +526,7 @@ bool DwarfCUToModule::NamedScopeHandler::EndAttributes() { dwarf2reader::DIEHandler *DwarfCUToModule::NamedScopeHandler::FindChildHandler( uint64 offset, enum DwarfTag tag, - const AttributeList &attrs) { + const AttributeList &/*attrs*/) { switch (tag) { case dwarf2reader::DW_TAG_subprogram: return new FuncHandler(cu_context_, &child_context_, offset); @@ -668,7 +668,7 @@ bool DwarfCUToModule::EndAttributes() { dwarf2reader::DIEHandler *DwarfCUToModule::FindChildHandler( uint64 offset, enum DwarfTag tag, - const AttributeList &attrs) { + const AttributeList &/*attrs*/) { switch (tag) { case dwarf2reader::DW_TAG_subprogram: return new FuncHandler(cu_context_, child_context_, offset); @@ -979,7 +979,7 @@ bool DwarfCUToModule::StartCompilationUnit(uint64 offset, } bool DwarfCUToModule::StartRootDIE(uint64 offset, enum DwarfTag tag, - const AttributeList& attrs) { + const AttributeList& /*attrs*/) { // We don't deal with partial compilation units (the only other tag // likely to be used for root DIE). return tag == dwarf2reader::DW_TAG_compile_unit; -- cgit v1.2.1