Resolve a build error for ICC 19

This argument name makes an error with "line 302:Type t = Undefined;"

Change-Id: I5488ff02ab7c9f9391c17361da5e2aac2727a6a0
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
bb10
Inho Lee 2020-01-07 15:06:37 +01:00
parent 64359ad710
commit 445c1a873f
1 changed files with 2 additions and 2 deletions

View File

@ -320,9 +320,9 @@ private:
return Type(quint8(st) | SimpleType);
}
Q_DECL_CONSTEXPR static bool isTag_helper(Type t)
Q_DECL_CONSTEXPR static bool isTag_helper(Type tt)
{
return t == Tag || t >= 0x10000;
return tt == Tag || tt >= 0x10000;
}
};
Q_DECLARE_SHARED(QCborValue)