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.88k stars 434 forks source link

Support for C++11 #359

Closed rhvarrier closed 4 months ago

rhvarrier commented 4 months ago

Is there any plans to add support for C++11 even if it's limited to some functionalities.

Neargye commented 4 months ago

Unfortunately, this library uses many features from C++17 (inline constexpr, string_view, etc); I don’t see it possible to rewrite it in C++11.