File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ ada_really_inline constexpr bool is_forbidden_host_code_point(
8686 * @see https://url.spec.whatwg.org/#forbidden-domain-code-point
8787 */
8888ada_really_inline constexpr bool contains_forbidden_domain_code_point (
89- char * input, size_t length) noexcept ;
89+ const char * input, size_t length) noexcept ;
9090
9191/* *
9292 * Checks if the input is a forbidden doamin code point.
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ ada_really_inline constexpr bool is_forbidden_domain_code_point(
131131}
132132
133133ada_really_inline constexpr bool contains_forbidden_domain_code_point (
134- char * input, size_t length) noexcept {
134+ const char * input, size_t length) noexcept {
135135 size_t i = 0 ;
136136 uint8_t accumulator{};
137137 for (; i + 4 <= length; i += 4 ) {
You can’t perform that action at this time.
0 commit comments