aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/cplusplus/TypePrettyPrinter.cpp
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2010-02-17 09:17:06 +0100
committerKai Koehne <kai.koehne@nokia.com>2010-02-17 09:17:54 +0100
commit1f411118bf8fc4119677e773d1d82bd6c6c8e86c (patch)
tree843a6616f94362b7823330bbb4f2968a0275f0d9 /src/libs/cplusplus/TypePrettyPrinter.cpp
parenta0431f0563961f2d2d55a639eb08143f08f8c069 (diff)
Fix compilation error with gcc 4.4.3
call of overloaded ‘QString(int)’ is ambiguous
Diffstat (limited to 'src/libs/cplusplus/TypePrettyPrinter.cpp')
-rw-r--r--src/libs/cplusplus/TypePrettyPrinter.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libs/cplusplus/TypePrettyPrinter.cpp b/src/libs/cplusplus/TypePrettyPrinter.cpp
index 07717905f9..f8260d36eb 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()