From b3d308995589d095a934e8ceb7158d86d925c42d Mon Sep 17 00:00:00 2001 From: Christian Kamm <christian.d.kamm@nokia.com> Date: Wed, 23 Dec 2009 11:38:05 +0100 Subject: [PATCH] Fix two small bugs in TypePrettyPrinter. - unsigned* was printed as unsigned - Type **name was printed as Type**name --- src/libs/cplusplus/TypePrettyPrinter.cpp | 11 ++++++++--- src/libs/cplusplus/TypePrettyPrinter.h | 1 + 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/libs/cplusplus/TypePrettyPrinter.cpp b/src/libs/cplusplus/TypePrettyPrinter.cpp index 3f4e1274c3d..4d08bd7109f 100644 --- a/src/libs/cplusplus/TypePrettyPrinter.cpp +++ b/src/libs/cplusplus/TypePrettyPrinter.cpp @@ -141,12 +141,12 @@ QList<FullySpecifiedType> TypePrettyPrinter::switchPtrOperators(const QList<Full void TypePrettyPrinter::applyPtrOperators(bool wantSpace) { + if (wantSpace && !_ptrOperators.isEmpty()) + space(); + for (int i = _ptrOperators.size() - 1; i != -1; --i) { const FullySpecifiedType op = _ptrOperators.at(i); - if (i == 0 && wantSpace) - space(); - if (op->isPointerType()) { _text += QLatin1Char('*'); outCV(op); @@ -161,6 +161,11 @@ void TypePrettyPrinter::applyPtrOperators(bool wantSpace) } } +void TypePrettyPrinter::visit(UndefinedType *) +{ + applyPtrOperators(); +} + void TypePrettyPrinter::visit(VoidType *) { _text += QLatin1String("void"); diff --git a/src/libs/cplusplus/TypePrettyPrinter.h b/src/libs/cplusplus/TypePrettyPrinter.h index ab7e42974f8..75741aa77cc 100644 --- a/src/libs/cplusplus/TypePrettyPrinter.h +++ b/src/libs/cplusplus/TypePrettyPrinter.h @@ -58,6 +58,7 @@ protected: void applyPtrOperators(bool wantSpace = true); void acceptType(const FullySpecifiedType &ty); + virtual void visit(UndefinedType *type); virtual void visit(VoidType *type); virtual void visit(IntegerType *type); virtual void visit(FloatType *type); -- GitLab