chore: require clang-format 19 (#6236)

This commit is contained in:
nerix
2025-05-25 15:46:28 +02:00
committed by GitHub
parent 8acca1c241
commit 85ae913413
6 changed files with 7 additions and 6 deletions
@@ -3,7 +3,7 @@
namespace chatterino::filters {
ListExpression::ListExpression(ExpressionList &&list)
: list_(std::move(list)){};
: list_(std::move(list)) {};
QVariant ListExpression::execute(const ContextMap &context) const
{
@@ -7,7 +7,7 @@ RegexExpression::RegexExpression(const QString &regex, bool caseInsensitive)
, caseInsensitive_(caseInsensitive)
, regex_(QRegularExpression(
regex, caseInsensitive ? QRegularExpression::CaseInsensitiveOption
: QRegularExpression::NoPatternOption)){};
: QRegularExpression::NoPatternOption)) {};
QVariant RegexExpression::execute(const ContextMap & /*context*/) const
{