aboutsummaryrefslogtreecommitdiff
path: root/src/common/linux/dwarf_line_to_module.cc
diff options
context:
space:
mode:
authorjimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-01-28 22:59:15 +0000
committerjimblandy <jimblandy@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-01-28 22:59:15 +0000
commit3e60d65111607f401461ff15981a463cde8f744a (patch)
treec2bce078d87b7a6789a22d1d69792989fd2566de /src/common/linux/dwarf_line_to_module.cc
parentBreakpad DWARF parser: Add method to read DWARF "Initial length". (diff)
downloadbreakpad-3e60d65111607f401461ff15981a463cde8f744a.tar.xz
Breakpad Linux Dumper: Rename structure members to follow the Google C++ Style Guide.
The Google C++ Style Guide says that members of structures needn't have names ending in underscores. The structure types in google_breakpad::Module don't follow this rule. a=jimblandy, r=nealsid git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@505 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/linux/dwarf_line_to_module.cc')
-rw-r--r--src/common/linux/dwarf_line_to_module.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/linux/dwarf_line_to_module.cc b/src/common/linux/dwarf_line_to_module.cc
index 745d324c..afef1c0e 100644
--- a/src/common/linux/dwarf_line_to_module.cc
+++ b/src/common/linux/dwarf_line_to_module.cc
@@ -108,11 +108,11 @@ void DwarfLineToModule::AddLine(uint64 address, uint64 length,
return;
}
Module::Line line;
- line.address_ = address;
+ line.address = address;
// We set the size when we get the next line or the EndSequence call.
- line.size_ = length;
- line.file_ = file;
- line.number_ = line_num;
+ line.size = length;
+ line.file = file;
+ line.number = line_num;
lines_->push_back(line);
}