mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-01 15:18:06 +00:00
StringView: Rename characters() to characters_without_null_termination().
This should make you think twice before trying to use the const char* from a StringView as if it's a null-terminated string.
This commit is contained in:
parent
567551bc12
commit
0e75aba7c3
Notes:
sideshowbarker
2024-07-19 13:22:04 +09:00
Author: https://github.com/awesomekling
Commit: 0e75aba7c3
21 changed files with 57 additions and 46 deletions
|
@ -12,7 +12,7 @@ const LogStream& operator<<(const LogStream& stream, const String& value)
|
|||
|
||||
const LogStream& operator<<(const LogStream& stream, const StringView& value)
|
||||
{
|
||||
stream.write(value.characters(), value.length());
|
||||
stream.write(value.characters_without_null_termination(), value.length());
|
||||
return stream;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue