diff options
author | jimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-10-05 22:07:48 +0000 |
---|---|---|
committer | jimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-10-05 22:07:48 +0000 |
commit | 4ae41d8d209f31eda3e148aacaa3cc93b51c5e5b (patch) | |
tree | aff5c74d02b8fb25120a532a79131243ce388cde /src/common | |
parent | Fix out-of-date comment for DwarfCUToModule::FilePrivate::common_strings. (diff) | |
download | breakpad-4ae41d8d209f31eda3e148aacaa3cc93b51c5e5b.tar.xz |
Comment out unused arguments in definitions, as required by the Google C++ Style Guide.
A=Rafael Ávila de Espíndola <respindola@mozilla.com> R=jimb at https://breakpad.appspot.
com/479003
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1064 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/dwarf_cu_to_module.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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; |