aboutsummaryrefslogtreecommitdiff
path: root/src/common/dwarf_cu_to_module_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/dwarf_cu_to_module_unittest.cc')
-rw-r--r--src/common/dwarf_cu_to_module_unittest.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/common/dwarf_cu_to_module_unittest.cc b/src/common/dwarf_cu_to_module_unittest.cc
index cea1a487..e88e381c 100644
--- a/src/common/dwarf_cu_to_module_unittest.cc
+++ b/src/common/dwarf_cu_to_module_unittest.cc
@@ -31,11 +31,15 @@
// dwarf_cu_to_module.cc: Unit tests for google_breakpad::DwarfCUToModule.
+#include <string>
+#include <utility>
#include <vector>
#include "breakpad_googletest_includes.h"
#include "common/dwarf_cu_to_module.h"
+using std::make_pair;
+using std::string;
using std::vector;
using dwarf2reader::AttributeList;
@@ -144,8 +148,8 @@ class CUFixtureBase {
// The handler will consult this section map to decide what to
// pass to our line reader.
- file_context_.section_map[".debug_line"] = std::make_pair(dummy_line_program_,
- dummy_line_size_);
+ file_context_.section_map[".debug_line"] = make_pair(dummy_line_program_,
+ dummy_line_size_);
}
// Add a line with the given address, size, filename, and line
@@ -158,7 +162,7 @@ class CUFixtureBase {
// Use LANGUAGE for the compilation unit. More precisely, arrange
// for StartCU to pass the compilation unit's root DIE a
// DW_AT_language attribute whose value is LANGUAGE.
- void SetLanguage(dwarf2reader::DwarfLanguage language) {
+ void SetLanguage(dwarf2reader::DwarfLanguage language) {
language_ = language;
}