Hello,
I wonder if there exists a way in VisualGDB to display if a flag is enabled or not during the debugging in a graphical way.
For example, I have a variable var, which has three flags:
#define flag1 01
#define flag2 02
#define flag3 03
sometimes during the program I enable one or the other flag (var |= flag1 for example) , but I find no other way to see which flags are enabled than checking the value of var and then check what bit have value=1.
Does exist a faster way to check which flag is enabled?
Thank you,
Mattia