diff options
Diffstat (limited to 'src/win/DebugLogger.hpp')
-rw-r--r-- | src/win/DebugLogger.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win/DebugLogger.hpp b/src/win/DebugLogger.hpp index 381803bc..4ca1567b 100644 --- a/src/win/DebugLogger.hpp +++ b/src/win/DebugLogger.hpp @@ -14,7 +14,7 @@ class WinDebugLoggerSource : public ::cru::log::ILogSource { ~WinDebugLoggerSource() = default; - void Write(::cru::log::LogLevel level, const std::string_view& s) override { + void Write(::cru::log::LogLevel level, std::string_view s) override { CRU_UNUSED(level) const std::wstring&& ws = ToUtf16String(s); |