QMake: be less laissez-faire with implicit conversions to QChar
QChar currently is convertible from nearly every integral type. This
is bad code hygiene and should be fixed come Qt 6.
The present patch is the result of compile fixes from marking these
constructors explicit.
Amends 60ca2f5f7c.
Change-Id: I06887104d42f8327eb6196afcde5f942a74a6a78
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
bb10
parent
8155d0693f
commit
0ca7c0a575
|
|
@ -238,7 +238,7 @@ ProString &ProString::append(const ProString &other, bool *pending)
|
|||
QChar *ptr;
|
||||
if (pending && !*pending) {
|
||||
ptr = prepareExtend(1 + other.m_length, 0, m_length);
|
||||
*ptr++ = 32;
|
||||
*ptr++ = QLatin1Char(' ');
|
||||
} else {
|
||||
ptr = prepareExtend(other.m_length, 0, m_length);
|
||||
}
|
||||
|
|
@ -276,7 +276,7 @@ ProString &ProString::append(const ProStringList &other, bool *pending, bool ski
|
|||
QChar *ptr = prepareExtend(totalLength, 0, m_length);
|
||||
for (int i = startIdx; i < sz; ++i) {
|
||||
if (putSpace)
|
||||
*ptr++ = 32;
|
||||
*ptr++ = QLatin1Char(' ');
|
||||
else
|
||||
putSpace = true;
|
||||
const ProString &str = other.at(i);
|
||||
|
|
|
|||
|
|
@ -1583,8 +1583,8 @@ void QMakeEvaluator::updateFeaturePaths()
|
|||
}
|
||||
|
||||
for (int i = 0; i < feature_roots.count(); ++i)
|
||||
if (!feature_roots.at(i).endsWith((ushort)'/'))
|
||||
feature_roots[i].append((ushort)'/');
|
||||
if (!feature_roots.at(i).endsWith(QLatin1Char('/')))
|
||||
feature_roots[i].append(QLatin1Char('/'));
|
||||
|
||||
feature_roots.removeDuplicates();
|
||||
|
||||
|
|
|
|||
|
|
@ -621,7 +621,7 @@ void QMakeParser::read(ProFile *pro, const QStringRef &in, int line, SubGrammar
|
|||
if (c != term) {
|
||||
parseError(fL1S("Missing %1 terminator [found %2]")
|
||||
.arg(QChar(term))
|
||||
.arg(c ? QString(c) : QString::fromLatin1("end-of-line")));
|
||||
.arg(c ? QString(QChar(c)) : QString::fromLatin1("end-of-line")));
|
||||
m_inError = true;
|
||||
// Just parse on, as if there was a terminator ...
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in New Issue