aboutsummaryrefslogtreecommitdiff
path: root/src/common/dwarf_line_to_module.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/dwarf_line_to_module.h')
-rw-r--r--src/common/dwarf_line_to_module.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/common/dwarf_line_to_module.h b/src/common/dwarf_line_to_module.h
index 1fdd4cb7..f54ccaf5 100644
--- a/src/common/dwarf_line_to_module.h
+++ b/src/common/dwarf_line_to_module.h
@@ -132,17 +132,17 @@ class DwarfLineToModule: public dwarf2reader::LineInfoHandler {
~DwarfLineToModule() { }
- void DefineDir(const string &name, uint32 dir_num);
- void DefineFile(const string &name, int32 file_num,
- uint32 dir_num, uint64 mod_time,
- uint64 length);
- void AddLine(uint64 address, uint64 length,
- uint32 file_num, uint32 line_num, uint32 column_num);
+ void DefineDir(const string &name, uint32_t dir_num);
+ void DefineFile(const string &name, int32_t file_num,
+ uint32_t dir_num, uint64_t mod_time,
+ uint64_t length);
+ void AddLine(uint64_t address, uint64_t length,
+ uint32_t file_num, uint32_t line_num, uint32_t column_num);
private:
- typedef std::map<uint32, string> DirectoryTable;
- typedef std::map<uint32, Module::File *> FileTable;
+ typedef std::map<uint32_t, string> DirectoryTable;
+ typedef std::map<uint32_t, Module::File *> FileTable;
// The module we're contributing debugging info to. Owned by our
// client.
@@ -171,12 +171,12 @@ class DwarfLineToModule: public dwarf2reader::LineInfoHandler {
// The highest file number we've seen so far, or -1 if we've seen
// none. Used for dynamically defined file numbers.
- int32 highest_file_number_;
+ int32_t highest_file_number_;
// This is the ending address of the last line we omitted, or zero if we
// didn't omit the previous line. It is zero before we have received any
// AddLine calls.
- uint64 omitted_line_end_;
+ uint64_t omitted_line_end_;
// True if we've warned about:
bool warned_bad_file_number_; // bad file numbers