chore: require clang-format 19 (#6236)
This commit is contained in:
@@ -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 ®ex, bool caseInsensitive)
|
||||
, caseInsensitive_(caseInsensitive)
|
||||
, regex_(QRegularExpression(
|
||||
regex, caseInsensitive ? QRegularExpression::CaseInsensitiveOption
|
||||
: QRegularExpression::NoPatternOption)){};
|
||||
: QRegularExpression::NoPatternOption)) {};
|
||||
|
||||
QVariant RegexExpression::execute(const ContextMap & /*context*/) const
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user