aboutsummaryrefslogtreecommitdiff
path: root/src/common/stabs_reader.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/stabs_reader.h')
-rw-r--r--src/common/stabs_reader.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/stabs_reader.h b/src/common/stabs_reader.h
index b22ebfd3..d89afc00 100644
--- a/src/common/stabs_reader.h
+++ b/src/common/stabs_reader.h
@@ -64,6 +64,7 @@
#include <vector>
#include "common/byte_cursor.h"
+#include "common/using_std_string.h"
namespace google_breakpad {
@@ -292,7 +293,7 @@ class StabsHandler {
// StartFunction is the function name alone.
//
// In languages that use name mangling, like C++, NAME is mangled.
- virtual bool StartFunction(const std::string &name, uint64_t address) {
+ virtual bool StartFunction(const string &name, uint64_t address) {
return true;
}
@@ -311,7 +312,7 @@ class StabsHandler {
// Report that an exported function NAME is present at ADDRESS.
// The size of the function is unknown.
- virtual bool Extern(const std::string &name, uint64_t address) {
+ virtual bool Extern(const string &name, uint64_t address) {
return true;
}