aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/DeclarationName.cpp
diff options
context:
space:
mode:
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;