diff options
author | crupest <crupest@outlook.com> | 2020-06-29 00:31:21 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-06-29 00:31:21 +0800 |
commit | 5c3dae62b9218dbd2493ff6390db062013ca4bdc (patch) | |
tree | 3425a9efa118eaf89627e6903cecb50a3daedb1d /src/win/DebugLogger.hpp | |
parent | 6b5aff7b7e50fae15cb010b340099163725f664c (diff) | |
download | cru-5c3dae62b9218dbd2493ff6390db062013ca4bdc.tar.gz cru-5c3dae62b9218dbd2493ff6390db062013ca4bdc.tar.bz2 cru-5c3dae62b9218dbd2493ff6390db062013ca4bdc.zip |
...
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); |