aboutsummaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorJoshua Peraza <jperaza@chromium.org>2017-03-22 16:06:16 -0700
committerJoshua Peraza <jperaza@chromium.org>2017-03-22 23:22:40 +0000
commit124035f4fb614dc57c90db2da12fa7c989573590 (patch)
treeb34fe56886a66d568c4e0736f80e2d48bb220e8b /src/common
parent[MIPS] Get (ptrace) value of $pc for a thread (diff)
downloadbreakpad-124035f4fb614dc57c90db2da12fa7c989573590.tar.xz
Use string instead of std::string
BUG= Change-Id: I06d1a836f8ff59a6abb7e420cd35fe52610ce091 Reviewed-on: https://chromium-review.googlesource.com/457872 Reviewed-by: Ivan Penkov <ivanpe@chromium.org>
Diffstat (limited to 'src/common')
-rw-r--r--src/common/language.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/language.cc b/src/common/language.cc
index 3929c0c6..978fb855 100644
--- a/src/common/language.cc
+++ b/src/common/language.cc
@@ -151,7 +151,7 @@ class RustLanguage: public Language {
}
virtual DemangleResult DemangleName(const string& mangled,
- std::string* demangled) const {
+ string* demangled) const {
// Rust names use GCC C++ name mangling, but demangling them with
// abi_demangle doesn't produce stellar results due to them having
// another layer of encoding.