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 {};