From 1f411118bf8fc4119677e773d1d82bd6c6c8e86c Mon Sep 17 00:00:00 2001 From: Kai Koehne <kai.koehne@nokia.com> Date: Wed, 17 Feb 2010 09:17:06 +0100 Subject: [PATCH] Fix compilation error with gcc 4.4.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit call of overloaded ‘QString(int)’ is ambiguous --- src/libs/cplusplus/TypePrettyPrinter.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libs/cplusplus/TypePrettyPrinter.cpp b/src/libs/cplusplus/TypePrettyPrinter.cpp index 07717905f9e..f8260d36eb5 100644 --- a/src/libs/cplusplus/TypePrettyPrinter.cpp +++ b/src/libs/cplusplus/TypePrettyPrinter.cpp @@ -71,8 +71,7 @@ static QString fullyQualifiedName(Symbol *symbol, const Overview *overview) } TypePrettyPrinter::TypePrettyPrinter(const Overview *overview) - : _overview(overview), - _name(0) + : _overview(overview) { } TypePrettyPrinter::~TypePrettyPrinter() -- GitLab