I\'m using a std::tuple and defined a class enum to somehow \"naming\" each of the tuple\'s fields, forgetting about their actual indexes.
std::tuple
So instead o
2018 update:
It's not a problem anymore. I did have a problem when I tried variations of "enum class int", but this now works fine with VS 2017 15.7.2
enum { WIDTH, HEIGHT }; std::get( Remaining ) = std::get( Remaining ) - MinHeight;