@@ -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