Skip to content

Commit

Permalink
clang-scan-deps cannot deal with tokens correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
trcrsired committed Oct 1, 2024
1 parent 24d63fe commit 7ecaef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fast_io_core_impl/literals/literal.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ template <::std::integral ch_type>
#endif
inline constexpr ch_type char_literal(char8_t ch) noexcept
{
#if 'A' != u8'A' || L'A' != u8'A'
#if (('A' != 0x41) || (L'A' != 0x41))
#include "none_ascii.h"
#endif
{
Expand Down

0 comments on commit 7ecaef6

Please sign in to comment.