Skip to content

Commit

Permalink
Merge pull request redpanda-data#23406 from Lazin/fix/formatting
Browse files Browse the repository at this point in the history
config: Make clang-format happy
  • Loading branch information
piyushredpanda authored Sep 20, 2024
2 parents a2bbe5a + 46e2291 commit aa90825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v/config/node_overrides.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ std::istream& operator>>(std::istream& is, config::node_id_override& v) {
std::string s;
is >> s;

const static re2::RE2 pattern{R"(^([^:]+):([^:]+):([^:]+)$)"};
static const re2::RE2 pattern{R"(^([^:]+):([^:]+):([^:]+)$)"};
vassert(pattern.ok(), "Regex compilation failed");

std::string curr, uuid, id;
Expand Down

0 comments on commit aa90825

Please sign in to comment.