summaryrefslogtreecommitdiffstats
path: root/lib/AST/DeclarationName.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-11-24 04:00:27 +0000
committerChris Lattner <sabre@nondot.org>2008-11-24 04:00:27 +0000
commit39f34e97d6a468f0a7dfa5664c61217cffc65b74 (patch)
tree9681872a04f2582824f6038b5df91cea35bb4742 /lib/AST/DeclarationName.cpp
parent8ec03f58c33c33a917f54bb7f2cd61b6d7ffe0ca (diff)
Migrate some stuff from NamedDecl::getName() to
NamedDecl::getNameAsString() to make it more explicit. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/DeclarationName.cpp')
-rw-r--r--lib/AST/DeclarationName.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/AST/DeclarationName.cpp b/lib/AST/DeclarationName.cpp
index ed4b7c6105..649b092db0 100644
--- a/lib/AST/DeclarationName.cpp
+++ b/lib/AST/DeclarationName.cpp
@@ -125,7 +125,7 @@ std::string DeclarationName::getAsString() const {
case CXXConstructorName: {
QualType ClassType = getCXXNameType();
if (const RecordType *ClassRec = ClassType->getAsRecordType())
- return ClassRec->getDecl()->getName();
+ return ClassRec->getDecl()->getNameAsString();
return ClassType.getAsString();
}
@@ -133,7 +133,7 @@ std::string DeclarationName::getAsString() const {
std::string Result = "~";
QualType Type = getCXXNameType();
if (const RecordType *Rec = Type->getAsRecordType())
- Result += Rec->getDecl()->getName();
+ Result += Rec->getDecl()->getNameAsString();
else
Result += Type.getAsString();
return Result;
@@ -160,7 +160,7 @@ std::string DeclarationName::getAsString() const {
std::string Result = "operator ";
QualType Type = getCXXNameType();
if (const RecordType *Rec = Type->getAsRecordType())
- Result += Rec->getDecl()->getName();
+ Result += Rec->getDecl()->getNameAsString();
else
Result += Type.getAsString();
return Result;