Extended clang-tidy ban to Qt helpers wrapping std functions.

This commit is contained in:
23rd
2026-09-14 18:00:15 +03:00
parent 13aebb12f4
commit 4e07bc8397

View File

@@ -6,7 +6,30 @@ CheckOptions:
^::qMin$,std::min,;
^::qMax$,std::max,;
^::qAbs$,std::abs,;
^::qBound$,std::clamp,orders arguments as (low, value, high)
^::qBound$,std::clamp,orders arguments as (low, value, high);
^::qSwap$,std::swap,;
^::qMakePair$,std::make_pair,;
^::qExchange$,std::exchange,;
^::qAsConst$,std::as_const,;
^::qFabs$,std::fabs,;
^::qSin$,std::sin,;
^::qCos$,std::cos,;
^::qTan$,std::tan,;
^::qAcos$,std::acos,;
^::qAsin$,std::asin,;
^::qAtan$,std::atan,;
^::qAtan2$,std::atan2,;
^::qSqrt$,std::sqrt,;
^::qLn$,std::log,;
^::qExp$,std::exp,;
^::qPow$,std::pow,;
^::qHypot$,std::hypot,;
^::qIsNaN$,std::isnan,;
^::qIsInf$,std::isinf,;
^::qIsFinite$,std::isfinite,;
^::qPopulationCount$,std::popcount,;
^::qCountLeadingZeroBits$,std::countl_zero,;
^::qCountTrailingZeroBits$,std::countr_zero,
# Header findings repeat per translation unit, and submodules are not ours.
HeaderFilterRegex: ''