aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/parser/qqmljslexer.cpp
diff options
context:
space:
mode:
authorhjk <hjk@qt.io>2020-08-10 04:57:08 +0200
committerhjk <hjk@qt.io>2020-08-10 07:29:25 +0200
commit2bb425bf26100971af7ec04ba4c95b9bc7dbc2e3 (patch)
tree9e89c04f5cc0fb433b9f213ff16f838723aee52e /src/qml/parser/qqmljslexer.cpp
parent3df5ad9d247b194401d61c3ffb4b816ec239bded (diff)
Use qstrntod instead of qstrtod
Potentially saves a few cycles by avoiding a strlen call. Change-Id: I3c1e4ddf3fb0a52e9f44edea11616a8969604091 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qml/parser/qqmljslexer.cpp')
-rw-r--r--src/qml/parser/qqmljslexer.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/qml/parser/qqmljslexer.cpp b/src/qml/parser/qqmljslexer.cpp
index c0ff69c6c4..df1789c4b3 100644
--- a/src/qml/parser/qqmljslexer.cpp
+++ b/src/qml/parser/qqmljslexer.cpp
@@ -1188,15 +1188,13 @@ int Lexer::scanNumber(QChar ch)
}
}
- chars.append(u'\0');
-
const char *begin = chars.constData();
const char *end = nullptr;
bool ok = false;
- _tokenValue = qstrtod(begin, &end, &ok);
+ _tokenValue = qstrntod(begin, chars.size(), &end, &ok);
- if (end - begin != chars.size() - 1) {
+ if (end - begin != chars.size()) {
_errorCode = IllegalExponentIndicator;
_errorMessage = QCoreApplication::translate("QQmlParser", "Illegal syntax for exponential number");
return T_ERROR;