diff options
author | Andreas Kling <kling@serenityos.org> | 2021-11-11 00:55:02 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-11 01:27:46 +0100 |
commit | 8b1108e4858f797c9216dc8ae4a3918ad50c73b4 (patch) | |
tree | ca64ba25aa735d25013d76c6d83570496c742014 /AK/Utf16View.h | |
parent | ad5d217e760c7fb73ffc0c4c827d767d6be8ec80 (diff) | |
download | serenity-8b1108e4858f797c9216dc8ae4a3918ad50c73b4.zip |
Everywhere: Pass AK::StringView by value
Diffstat (limited to 'AK/Utf16View.h')
-rw-r--r-- | AK/Utf16View.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/Utf16View.h b/AK/Utf16View.h index 348ef085e8..5b6fc24e06 100644 --- a/AK/Utf16View.h +++ b/AK/Utf16View.h @@ -16,7 +16,7 @@ namespace AK { -Vector<u16, 1> utf8_to_utf16(StringView const&); +Vector<u16, 1> utf8_to_utf16(StringView); Vector<u16, 1> utf8_to_utf16(Utf8View const&); Vector<u16, 1> utf32_to_utf16(Utf32View const&); void code_point_to_utf16(Vector<u16, 1>&, u32); |