Skip to content

Commit

Permalink
Fix typo in Record.h (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
dejan1024 authored Mar 14, 2024
1 parent 1997343 commit a14802a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/plog/Record.h
Original file line number Diff line number Diff line change
Expand Up @@ -244,12 +244,12 @@ namespace plog
template<class Stream, size_t N>
struct isStreamable<const wchar_t[N], Stream> : valueType<false> {};

// 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<const wchar_t*, std::ostream> : valueType<false> {};

# 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<class Stream, size_t N>
struct isStreamable<char8_t[N], Stream> : valueType<false> {};

Expand Down

0 comments on commit a14802a

Please sign in to comment.