Skip to content

Fix unused-result warning in lastIndexOf() call

David Faure requested to merge work/dfaure/unused-result-warning into master

[[nodiscard]] is arguably wrong for the lastIndexOf() that takes an optional pointer to a QRegularExpressionMatch, because we can inspect that object to see if we had a match.

Merge request reports