Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ada-url/ada
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 011611636c7c15e43483a4eb1ceea6ded5b7a335
Choose a base ref
..
head repository: ada-url/ada
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0fbe9cea692f8c302bfb5104547403d42b676ff5
Choose a head ref
Showing with 9 additions and 9 deletions.
  1. +9 −9 include/ada/url_pattern.h
18 changes: 9 additions & 9 deletions include/ada/url_pattern.h
Original file line number Diff line number Diff line change
@@ -233,15 +233,15 @@ using url_pattern_input = std::variant<url_aggregator, url_pattern_init>;
// components of a URL. The URLPatternResult API is defined as
// part of the URLPattern specification.
struct url_pattern_result {
std::vector<url_pattern_input> inputs{};
url_pattern_component_result protocol{};
url_pattern_component_result username{};
url_pattern_component_result password{};
url_pattern_component_result hostname{};
url_pattern_component_result port{};
url_pattern_component_result pathname{};
url_pattern_component_result search{};
url_pattern_component_result hash{};
std::vector<url_pattern_input> inputs;
url_pattern_component_result protocol;
url_pattern_component_result username;
url_pattern_component_result password;
url_pattern_component_result hostname;
url_pattern_component_result port;
url_pattern_component_result pathname;
url_pattern_component_result search;
url_pattern_component_result hash;
};

struct url_pattern_options {