Skip to content

Commit

Permalink
revert private due to llvm bug
Browse files Browse the repository at this point in the history
  • Loading branch information
anonrig committed Jan 30, 2025
1 parent 2c34eec commit 429c685
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion include/ada/url_pattern.h
Original file line number Diff line number Diff line change
Expand Up @@ -289,15 +289,41 @@ class url_pattern {
std::variant<std::string_view, url_pattern_init> input,
const std::string_view* base_url, const url_pattern_options* options);

private:
/**
* @private
*/
url_pattern_component<regex_provider> protocol_component{};
/**
* @private
*/
url_pattern_component<regex_provider> username_component{};
/**
* @private
*/
url_pattern_component<regex_provider> password_component{};
/**
* @private
*/
url_pattern_component<regex_provider> hostname_component{};
/**
* @private
*/
url_pattern_component<regex_provider> port_component{};
/**
* @private
*/
url_pattern_component<regex_provider> pathname_component{};
/**
* @private
*/
url_pattern_component<regex_provider> search_component{};
/**
* @private
*/
url_pattern_component<regex_provider> hash_component{};
/**
* @private
*/
bool ignore_case_ = false;
};

Expand Down

0 comments on commit 429c685

Please sign in to comment.