i would like to generate an enum with one element set to inifite. I know about the limits library, but it seems this can only be used for specific datatypes. Yet i would like to use it in enum:
enum Speedlimits{ schoolarea = 30; normalarea = 50; highway = inifite; }; Any suggestions?