hpp2plantuml
hpp2plantuml copied to clipboard
#defines in enumerator is causing error
It might be a corner case, but a corner case I am stumbling into right now.
The following snippet is causing an error and I am not sure if the #define should be ignored in the diagram or not.
enum class states
{
#undef ID
#define ID(x) x,
state
};