mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-01 22:20:06 +00:00
Detemplatize code_point_length_impl
This commit is contained in:
parent
f98048b621
commit
91481f255c
@ -2297,16 +2297,15 @@ constexpr auto to_ascii(Char c) -> underlying_t<Char> {
|
|||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Char>
|
FMT_CONSTEXPR inline auto code_point_length_impl(char c) -> int {
|
||||||
FMT_CONSTEXPR auto code_point_length_impl(Char begin) -> int {
|
|
||||||
return "\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\0\0\0\0\0\0\0\0\2\2\2\2\3\3\4"
|
return "\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\1\0\0\0\0\0\0\0\0\2\2\2\2\3\3\4"
|
||||||
[static_cast<unsigned char>(begin) >> 3];
|
[static_cast<unsigned char>(c) >> 3];
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename Char>
|
template <typename Char>
|
||||||
FMT_CONSTEXPR auto code_point_length(const Char* begin) -> int {
|
FMT_CONSTEXPR auto code_point_length(const Char* begin) -> int {
|
||||||
if (const_check(sizeof(Char) != 1)) return 1;
|
if (const_check(sizeof(Char) != 1)) return 1;
|
||||||
int len = code_point_length_impl(*begin);
|
int len = code_point_length_impl(static_cast<char>(*begin));
|
||||||
|
|
||||||
// Compute the pointer to the next character early so that the next
|
// Compute the pointer to the next character early so that the next
|
||||||
// iteration can start working on the next character. Neither Clang
|
// iteration can start working on the next character. Neither Clang
|
||||||
|
Loading…
Reference in New Issue
Block a user