From a14802a91e516f279fb4906a12781371d1758130 Mon Sep 17 00:00:00 2001 From: 1024 <135350620+dejan1024@users.noreply.github.com> Date: Thu, 14 Mar 2024 10:51:55 +0100 Subject: [PATCH] Fix typo in Record.h (#282) --- include/plog/Record.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/plog/Record.h b/include/plog/Record.h index e8dbdfe..c919e3a 100644 --- a/include/plog/Record.h +++ b/include/plog/Record.h @@ -244,12 +244,12 @@ namespace plog template struct isStreamable : valueType {}; - // meta doesn't work well for deleted functions and C++20 has `operator<<(std::ostream&, const wchar_t*) = delete` so exlicitly define it + // meta doesn't work well for deleted functions and C++20 has `operator<<(std::ostream&, const wchar_t*) = delete` so explicitly define it template<> struct isStreamable : valueType {}; # ifdef __cpp_char8_t - // meta doesn't work well for deleted functions and C++20 has `operator<<(std::ostream&, const char8_t*) = delete` so exlicitly define it + // meta doesn't work well for deleted functions and C++20 has `operator<<(std::ostream&, const char8_t*) = delete` so explicitly define it template struct isStreamable : valueType {};