Use the fully qualified name.

This commit is contained in:
Axel Naumann 2014-09-26 11:57:59 +02:00 committed by sftnight
parent 79c63615f7
commit 16b653da0e

View File

@ -339,6 +339,7 @@ namespace cling {
QualType ValueTy = this->getType().getNonReferenceType();
if (!ValueTy->isPointerType())
ValueTy = C.getPointerType(ValueTy);
ValueTy = utils::TypeName::GetFullyQualifiedType(ValueTy, getASTContext());
PrintingPolicy Policy(m_Interpreter->getCI()->getLangOpts());
std::string ValueTyStr = ValueTy.getAsString(Policy);
std::string typeStr;