File tree Expand file tree Collapse file tree 2 files changed +2375
-2370
lines changed
Expand file tree Collapse file tree 2 files changed +2375
-2370
lines changed Original file line number Diff line number Diff line change 1- /* auto-generated on 2024-12-18 09:44:34 -0500. Do not edit! */
1+ /* auto-generated on 2025-03-08 13:17:11 -0500. Do not edit! */
22/* begin file include/idna.h */
33#ifndef ADA_IDNA_H
44#define ADA_IDNA_H
@@ -150,15 +150,14 @@ std::string to_unicode(std::string_view input);
150150
151151namespace ada ::idna {
152152
153- // Access the first code point of the input string.
154153// Verify if it is valid name code point given a Unicode code point and a
155154// boolean first: If first is true return the result of checking if code point
156155// is contained in the IdentifierStart set of code points. Otherwise return the
157156// result of checking if code point is contained in the IdentifierPart set of
158157// code points. Returns false if the input is empty or the code point is not
159158// valid. There is minimal Unicode error handling: the input should be valid
160159// UTF-8. https://urlpattern.spec.whatwg.org/#is-a-valid-name-code-point
161- bool valid_name_code_point (char32_t input , bool first);
160+ bool valid_name_code_point (char32_t code_point , bool first);
162161
163162} // namespace ada::idna
164163
You can’t perform that action at this time.
0 commit comments