hpp2plantuml icon indicating copy to clipboard operation
hpp2plantuml copied to clipboard

#defines in enumerator is causing error

Open JacobNoergaard opened this issue 1 year ago • 1 comments

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
};

JacobNoergaard avatar Mar 21 '23 08:03 JacobNoergaard