Skip to content

Commit c1df595

Browse files
authored
Fix a regression due to llvm bug (#859)
* add more macos versions to test * revert private due to llvm bug
1 parent d44402b commit c1df595

File tree

2 files changed

+49
-5
lines changed

2 files changed

+49
-5
lines changed

.github/workflows/macos_install.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: macos (Installation)
1+
name: macOS (Installation)
22

33
on:
44
pull_request:
@@ -22,11 +22,11 @@ concurrency:
2222

2323
jobs:
2424
macos-build:
25-
runs-on: macos-15
2625
strategy:
2726
matrix:
28-
include:
29-
- shared: OFF
27+
shared: [OFF]
28+
runs-on: [macos-13, macos-14, macos-15]
29+
runs-on: ${{matrix.runs-on}}
3030
steps:
3131
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3232
- name: Prepare

include/ada/url_pattern.h

+45-1
Original file line numberDiff line numberDiff line change
@@ -289,15 +289,59 @@ class url_pattern {
289289
std::variant<std::string_view, url_pattern_init> input,
290290
const std::string_view* base_url, const url_pattern_options* options);
291291

292-
private:
292+
/**
293+
* @private
294+
* We can not make this private due to a LLVM bug.
295+
* Ref: https://github.com/ada-url/ada/pull/859
296+
*/
293297
url_pattern_component<regex_provider> protocol_component{};
298+
/**
299+
* @private
300+
* We can not make this private due to a LLVM bug.
301+
* Ref: https://github.com/ada-url/ada/pull/859
302+
*/
294303
url_pattern_component<regex_provider> username_component{};
304+
/**
305+
* @private
306+
* We can not make this private due to a LLVM bug.
307+
* Ref: https://github.com/ada-url/ada/pull/859
308+
*/
295309
url_pattern_component<regex_provider> password_component{};
310+
/**
311+
* @private
312+
* We can not make this private due to a LLVM bug.
313+
* Ref: https://github.com/ada-url/ada/pull/859
314+
*/
296315
url_pattern_component<regex_provider> hostname_component{};
316+
/**
317+
* @private
318+
* We can not make this private due to a LLVM bug.
319+
* Ref: https://github.com/ada-url/ada/pull/859
320+
*/
297321
url_pattern_component<regex_provider> port_component{};
322+
/**
323+
* @private
324+
* We can not make this private due to a LLVM bug.
325+
* Ref: https://github.com/ada-url/ada/pull/859
326+
*/
298327
url_pattern_component<regex_provider> pathname_component{};
328+
/**
329+
* @private
330+
* We can not make this private due to a LLVM bug.
331+
* Ref: https://github.com/ada-url/ada/pull/859
332+
*/
299333
url_pattern_component<regex_provider> search_component{};
334+
/**
335+
* @private
336+
* We can not make this private due to a LLVM bug.
337+
* Ref: https://github.com/ada-url/ada/pull/859
338+
*/
300339
url_pattern_component<regex_provider> hash_component{};
340+
/**
341+
* @private
342+
* We can not make this private due to a LLVM bug.
343+
* Ref: https://github.com/ada-url/ada/pull/859
344+
*/
301345
bool ignore_case_ = false;
302346
};
303347

0 commit comments

Comments
 (0)