diff --git a/Userland/Libraries/LibUnicode/UnicodeUtils.cpp b/Userland/Libraries/LibUnicode/UnicodeUtils.cpp index fc50cd0edd..2d3572b5a9 100644 --- a/Userland/Libraries/LibUnicode/UnicodeUtils.cpp +++ b/Userland/Libraries/LibUnicode/UnicodeUtils.cpp @@ -266,7 +266,7 @@ ErrorOr build_uppercase_string([[maybe_unused]] Utf8View code_points, [[ma } // https://www.unicode.org/versions/Unicode15.0.0/ch03.pdf#G34078 -ErrorOr build_titlecase_string([[maybe_unused]] Utf8View code_points, [[maybe_unused]] StringBuilder& builder, [[maybe_unused]] Optional const& locale, TrailingCodePointTransformation trailing_code_point_transformation) +ErrorOr build_titlecase_string([[maybe_unused]] Utf8View code_points, [[maybe_unused]] StringBuilder& builder, [[maybe_unused]] Optional const& locale, [[maybe_unused]] TrailingCodePointTransformation trailing_code_point_transformation) { #if ENABLE_UNICODE_DATA // toTitlecase(X): Find the word boundaries in X according to Unicode Standard Annex #29,