Remove comment about QVariantList and QVariantMap.
authorStephen Kelly <stephen.kelly@kdab.com>
Tue, 27 Mar 2012 22:32:02 +0000 (00:32 +0200)
committerQt by Nokia <qt-info@nokia.com>
Wed, 28 Mar 2012 01:18:56 +0000 (03:18 +0200)
They predate Qt 4.5, but it looks like the comments are indicating
that QVariantList and QVariantMap types will use the basic template,
but that is not the case. Instead they will use the compare
specializations for QList<T> and QMap<T> respectively.

Change-Id: Iebf7e9b8aaa8a699ea720090fbf641dfecde0ff7
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
tests/auto/dbus/qdbusmarshall/common.h

index 0256415..f4c10c4 100644 (file)
@@ -350,8 +350,6 @@ QT_END_NAMESPACE
 
 #endif
 
-//bool compare(const QVariantList &l1, const QVariantList &l2);
-//bool compare(const QVariantMap &m1, const QVariantMap &m2);
 template<typename T>
 bool compare(const T &t1, const T &t2)
 { return t1 == t2; }