commit 6a4656904d6e20f96617045e57d9d2357bc6ed50 parent 9fc73247f43b303617329294ae264613df4dce71 Author: [email protected] <[email protected]> Date: Thu, 29 Apr 2021 07:40:34 +0000 Fix ctype_name for clang Diffstat:
M | include/kfr/cometa/ctti.hpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/kfr/cometa/ctti.hpp b/include/kfr/cometa/ctti.hpp @@ -28,7 +28,7 @@ constexpr inline type_id_t typeident_impl() CMT_NOEXCEPT } #ifdef CMT_COMPILER_CLANG -constexpr size_t typename_prefix = sizeof("auto cometa::ctype_name() [T = ") - 1; +constexpr size_t typename_prefix = sizeof("auto __cdecl cometa::ctype_name(void) [T = ") - 1; constexpr size_t typename_postfix = sizeof("]") - 1; #elif CMT_COMPILER_MSVC constexpr size_t typename_prefix = sizeof("auto __cdecl cometa::ctype_name<") - 1;