M
Mantorok Redgormor
Is there any point ever in using enum with a tag to specify a variable
of that type instead of just creating the following:
enum { FOO, BOO };
I can access FOO and BOO in my program. So what is the point in ever
using something of the following:
enum woo { FOO, BOO };
enum woo bar;
Why would I ever use bar.FOO or bar.BOO when I can access FOO and BOO
anonymously?
of that type instead of just creating the following:
enum { FOO, BOO };
I can access FOO and BOO in my program. So what is the point in ever
using something of the following:
enum woo { FOO, BOO };
enum woo bar;
Why would I ever use bar.FOO or bar.BOO when I can access FOO and BOO
anonymously?