You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to upgrade fmtlib to support clang-17. However, the latest version of fmtlib disable implicit casts from enum/enum class to int, which leads to compile error. We need to resolve those errors with magic_enum::enum_name to print out the enum nam or fmt::underlying to print out the int value.
Enhancement
Ref #7193
We need to upgrade fmtlib to support clang-17. However, the latest version of fmtlib disable implicit casts from
enum
/enum class
to int, which leads to compile error. We need to resolve those errors withmagic_enum::enum_name
to print out the enum nam orfmt::underlying
to print out the int value.Reference: fmtlib/fmt#3671
The text was updated successfully, but these errors were encountered: