We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f7b535 commit 1a38e62Copy full SHA for 1a38e62
src/libutil/url.cc
@@ -22,7 +22,6 @@ ParsedURL parseURL(const std::string & url)
22
std::smatch match;
23
24
if (std::regex_match(url, match, uriRegex)) {
25
- auto & base = match[1];
26
std::string scheme = match[2];
27
auto authority = match[3].matched
28
? std::optional<std::string>(match[3]) : std::nullopt;
0 commit comments