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
This commit is contained in:
@@ -526,7 +526,7 @@ bool DwarfCUToModule::NamedScopeHandler::EndAttributes() {
|
|||||||
dwarf2reader::DIEHandler *DwarfCUToModule::NamedScopeHandler::FindChildHandler(
|
dwarf2reader::DIEHandler *DwarfCUToModule::NamedScopeHandler::FindChildHandler(
|
||||||
uint64 offset,
|
uint64 offset,
|
||||||
enum DwarfTag tag,
|
enum DwarfTag tag,
|
||||||
const AttributeList &attrs) {
|
const AttributeList &/*attrs*/) {
|
||||||
switch (tag) {
|
switch (tag) {
|
||||||
case dwarf2reader::DW_TAG_subprogram:
|
case dwarf2reader::DW_TAG_subprogram:
|
||||||
return new FuncHandler(cu_context_, &child_context_, offset);
|
return new FuncHandler(cu_context_, &child_context_, offset);
|
||||||
@@ -668,7 +668,7 @@ bool DwarfCUToModule::EndAttributes() {
|
|||||||
dwarf2reader::DIEHandler *DwarfCUToModule::FindChildHandler(
|
dwarf2reader::DIEHandler *DwarfCUToModule::FindChildHandler(
|
||||||
uint64 offset,
|
uint64 offset,
|
||||||
enum DwarfTag tag,
|
enum DwarfTag tag,
|
||||||
const AttributeList &attrs) {
|
const AttributeList &/*attrs*/) {
|
||||||
switch (tag) {
|
switch (tag) {
|
||||||
case dwarf2reader::DW_TAG_subprogram:
|
case dwarf2reader::DW_TAG_subprogram:
|
||||||
return new FuncHandler(cu_context_, child_context_, offset);
|
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,
|
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
|
// We don't deal with partial compilation units (the only other tag
|
||||||
// likely to be used for root DIE).
|
// likely to be used for root DIE).
|
||||||
return tag == dwarf2reader::DW_TAG_compile_unit;
|
return tag == dwarf2reader::DW_TAG_compile_unit;
|
||||||
|
Reference in New Issue
Block a user