Analyzer: Compile fix for gcc 4.0.1

Suggested by Roberto Raggi.
This commit is contained in:
Kai Koehne
2011-03-17 16:54:28 +01:00
parent ba92d4c922
commit 7d67c154cf

View File

@@ -54,7 +54,7 @@ template <typename T> static void setIfPresent(const QVariantMap &map, const QSt
{ {
if (!map.contains(key)) if (!map.contains(key))
return; return;
*val = map.value(key).value<T>(); *val = map.value(key).template value<T>();
} }
/** /**