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>
This commit is contained in:
parent
77411db895
commit
124035f4fb
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ class RustLanguage: public Language {
|
||||||
}
|
}
|
||||||
|
|
||||||
virtual DemangleResult DemangleName(const string& mangled,
|
virtual DemangleResult DemangleName(const string& mangled,
|
||||||
std::string* demangled) const {
|
string* demangled) const {
|
||||||
// Rust names use GCC C++ name mangling, but demangling them with
|
// Rust names use GCC C++ name mangling, but demangling them with
|
||||||
// abi_demangle doesn't produce stellar results due to them having
|
// abi_demangle doesn't produce stellar results due to them having
|
||||||
// another layer of encoding.
|
// another layer of encoding.
|
||||||
|
|
Loading…
Reference in a new issue