Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
kris-jusiak committed Mar 9, 2024
1 parent 8b711e1 commit 0d92cb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/sml.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ auto get_type_name(const char *ptr, index_sequence<Ns...>) {
template <class T>
const char *get_type_name() {
#if defined(_MSC_VER) && !defined(__clang__)
return detail::get_type_name<T, 40>(__FUNCSIG__, make_index_sequence<sizeof(__FUNCSIG__) - 40 - 8>{});
return detail::get_type_name<T, 65>(__FUNCSIG__, make_index_sequence<sizeof(__FUNCSIG__) - 65 - 8>{});
#elif defined(__clang__) && (__clang_major__ >= 12)
return detail::get_type_name<T, 50>(__PRETTY_FUNCTION__, make_index_sequence<sizeof(__PRETTY_FUNCTION__) - 50 - 2>{});
#elif defined(__clang__)
Expand Down

0 comments on commit 0d92cb6

Please sign in to comment.