Neargye / magic_enum

Static reflection for enums (to string, from string, iteration) for modern C++, work with any enum type without any macro or boilerplate code
MIT License
4.76k stars 422 forks source link

did something happen to magic_enum::enum_for_each ? #348

Closed mishaxz closed 4 months ago

mishaxz commented 4 months ago

stupid question but is magic_enum::enum_for_each still part of of the library?

my old code is refusing to compile because it thinks enum_for_each is not a member of magic_enum

and I can't really find enum_for_each in the code on this site.

Neargye commented 4 months ago

Hi, try #include "magic_enum_utility.hpp

mishaxz commented 4 months ago

thanks that worked