diff options
author | Marc Mutz <[email protected]> | 2022-10-13 23:18:06 +0200 |
---|---|---|
committer | Marc Mutz <[email protected]> | 2022-10-20 23:59:33 +0200 |
commit | 534241f723161ab79d9a85b2c8145d571f0d99f9 (patch) | |
tree | 1e130c190346202afe4dd2deb4292b180f0c9b48 /src/qmlmodels/qqmlobjectmodel.cpp | |
parent | dbff59d279182e6cd35be9a7f5240e666ba02eee (diff) |
Port to new Q_UNREACHABLE_RETURN()
This is a semantic patch using ClangTidyTransformator to convert
sequences of Q_UNREACHABLE() + return into Q_UNREACHABLE_RETURN(),
newly added to qtbase.
const std::string unr = "unr", val = "val", ret = "ret";
auto makeUnreachableReturn = cat("Q_UNREACHABLE_RETURN(",
ifBound(val, cat(node(val)), cat("")),
")");
auto ignoringSwitchCases = [](auto stmt) {
return anyOf(stmt, switchCase(subStmt(stmt)));
};
makeRule(stmt(ignoringSwitchCases(stmt(isExpandedFromMacro("Q_UNREACHABLE")).bind(unr)),
nextStmt(returnStmt(optionally(hasReturnValue(expr().bind(val)))).bind(ret))),
{changeTo(node(unr), cat(makeUnreachableReturn,
";")), // TODO: why is the ; lost w/o this?
changeTo(node(ret), cat(""))},
cat("use ", makeUnreachableReturn));
a.k.a qt-use-unreachable-return.
subStmt() and nextStmt() are non-standard matchers.
There was one false positive, suppressed it with NOLINTNEXTLINE.
It's not really a false positiive, it's just that Clang sees the world
in one way and if conditonal compilation (#if) differs for other
compilers, Clang doesn't know better. This is an artifact of matching
two consecutive statements.
Change-Id: I3855b2dc8523db1ea860f72ad9818738162495c6
Reviewed-by: Qt CI Bot <[email protected]>
Reviewed-by: Fabian Kosmale <[email protected]>
Diffstat (limited to 'src/qmlmodels/qqmlobjectmodel.cpp')
-rw-r--r-- | src/qmlmodels/qqmlobjectmodel.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qmlmodels/qqmlobjectmodel.cpp b/src/qmlmodels/qqmlobjectmodel.cpp index 970a1e541f..4921010911 100644 --- a/src/qmlmodels/qqmlobjectmodel.cpp +++ b/src/qmlmodels/qqmlobjectmodel.cpp @@ -422,8 +422,7 @@ bool QQmlInstanceModel::setRequiredProperty(int index, const QString &name, cons Q_UNUSED(value); // The view should not call this function, unless // it's actually handled in a subclass. - Q_UNREACHABLE(); - return false; + Q_UNREACHABLE_RETURN(false); } QT_END_NAMESPACE |