@@ -289,15 +289,59 @@ class url_pattern {
289
289
std::variant<std::string_view, url_pattern_init> input,
290
290
const std::string_view* base_url, const url_pattern_options* options);
291
291
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
+ */
293
297
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
+ */
294
303
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
+ */
295
309
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
+ */
296
315
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
+ */
297
321
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
+ */
298
327
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
+ */
299
333
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
+ */
300
339
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
+ */
301
345
bool ignore_case_ = false ;
302
346
};
303
347
0 commit comments