Core/Log: Pass string_view by value instead of ref

This commit is contained in:
SirLynix
2023-02-22 19:04:07 +01:00
parent e96204a2ab
commit b38f9dc79b
10 changed files with 18 additions and 18 deletions

View File

@@ -257,7 +257,7 @@ namespace Nz
* \param string String to write
*/
bool Stream::Write(const std::string_view& string)
bool Stream::Write(std::string_view string)
{
if (m_streamOptions & StreamOption::Text)
{