Skip to content

Commit 77948ab

Browse files
committed
update ada-idna to v0.3.1
1 parent b8a9bf1 commit 77948ab

File tree

2 files changed

+2375
-2370
lines changed

2 files changed

+2375
-2370
lines changed

include/ada/ada_idna.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

151151
namespace 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

0 commit comments

Comments
 (0)