aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Support/NameMangling.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Support/NameMangling.h')
-rw-r--r--include/llvm/Support/NameMangling.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/NameMangling.h b/include/llvm/Support/NameMangling.h
index 67e68c7738..8d33dcc435 100644
--- a/include/llvm/Support/NameMangling.h
+++ b/include/llvm/Support/NameMangling.h
@@ -14,14 +14,14 @@ class Value;
// MangleTypeName - Implement a consistent name-mangling scheme for
// a given type.
//
-string MangleTypeName(const Type *type);
+std::string MangleTypeName(const Type *type);
// MangleName - implement a consistent name-mangling scheme for all
// externally visible (i.e., global) objects.
//
// privateName should be unique within the module.
//
-string MangleName(const string &privateName, const Value *V);
+std::string MangleName(const std::string &privateName, const Value *V);
#endif