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:
Joshua Peraza 2017-03-22 16:06:16 -07:00
parent 77411db895
commit 124035f4fb

View File

@ -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.