Compare commits
No commits in common. "4c3024e9782f74f32b15a46d72ff9a78a149dbc9" and "3b9d9775bf62779607607da891aca746265ecb29" have entirely different histories.
4c3024e978
...
3b9d9775bf
@ -95,10 +95,6 @@ constexpr inline const char* digits2_base(size_t value) {
|
||||
|
||||
|
||||
constexpr inline void copy2(char* dst, const char* src) {
|
||||
if (!std::is_constant_evaluated()) {
|
||||
std::memcpy(dst, src, 2);
|
||||
return;
|
||||
}
|
||||
*dst++ = static_cast<char>(*src++);
|
||||
*dst = static_cast<char>(*src);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user