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 TypePrettyPrinter::switchPtrOperators(const QListisPointerType()) { _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);