Skip to content

Commit 1a38e62

Browse files
committed
Remove unused variable
1 parent 5f7b535 commit 1a38e62

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/libutil/url.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ ParsedURL parseURL(const std::string & url)
2222
std::smatch match;
2323

2424
if (std::regex_match(url, match, uriRegex)) {
25-
auto & base = match[1];
2625
std::string scheme = match[2];
2726
auto authority = match[3].matched
2827
? std::optional<std::string>(match[3]) : std::nullopt;

0 commit comments

Comments
 (0)