summaryrefslogtreecommitdiffstats
path: root/src/corelib/tools/qlocale.cpp
diff options
context:
space:
mode:
authorOlivier Goffart <olivier.goffart@nokia.com>2011-04-27 16:29:27 (GMT)
committerOlivier Goffart <olivier.goffart@nokia.com>2011-04-28 08:45:11 (GMT)
commit5e5485809e8c6f8339bb9f19ad71ed623a8b23c7 (patch)
tree7366d94a5ba6d0d56cb0074d411ac571ce8081da /src/corelib/tools/qlocale.cpp
parentddd253e14318af45e5c56df736028b88257068c4 (diff)
downloadQt-5e5485809e8c6f8339bb9f19ad71ed623a8b23c7.zip
Qt-5e5485809e8c6f8339bb9f19ad71ed623a8b23c7.tar.gz
Qt-5e5485809e8c6f8339bb9f19ad71ed623a8b23c7.tar.bz2
Fixes warnings
In QString, it would comlain that: assuming signed overflow does not occur when assuming that (X - c) > X is always false Changing to unsigned comparison fix the warning Others are about unused variables Reviewed-by: Thiago
Diffstat (limited to 'src/corelib/tools/qlocale.cpp')
-rw-r--r--src/corelib/tools/qlocale.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/corelib/tools/qlocale.cpp b/src/corelib/tools/qlocale.cpp
index 5c4085a..c8ed94b 100644
--- a/src/corelib/tools/qlocale.cpp
+++ b/src/corelib/tools/qlocale.cpp
@@ -2782,8 +2782,6 @@ bool QLocalePrivate::numberToCLocale(const QString &num,
if (idx == l)
return false;
- const QChar _group = group();
-
while (idx < l) {
const QChar &in = uc[idx];