Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
(cherry picked from commit 1a38e62)
  • Loading branch information
edolstra authored and mergify[bot] committed Jan 9, 2025
1 parent be37c87 commit 5250283
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/libutil/url.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ ParsedURL parseURL(const std::string & url)
std::smatch match;

if (std::regex_match(url, match, uriRegex)) {
auto & base = match[1];
std::string scheme = match[2];
auto authority = match[3].matched
? std::optional<std::string>(match[3]) : std::nullopt;
Expand Down

0 comments on commit 5250283

Please sign in to comment.