I know that it's possible to write a "register" macro that will map their values to their string representations. Is there however some new magic in C++11 that makes it possible to do without macros and any registration boilerplate?
To make it clear, I would like to be able to print the identifiers of enum variables, such as:
enum Days { Sunday, Monday, Tuesday };
auto d = Days::Sunday;
std::cout << magic << d;
Should output
Days::Sunday

std::string day_names[] = {"Sunday", "Monday", "Tuesday"};– Gene Bushuyev Nov 18 '11 at 18:38