Tagged Questions

2
votes
4answers
117 views

Bitflag enums in C++

Using enums for storing bitflags in C++ is a bit troublesome, since once the enum values are ORed they loose their enum-type, which causes errors without explicit casting. The acc …
1
vote
6answers
173 views

#defined bitflags and enums - peaceful coexistence in “c”

I have just discovered the joy of bitflags. I have several questions related to "best-practices" regarding the use of bitflags in C. I learned everything from various examples I fo …
2
votes
7answers
389 views

How to pick bitflag values?

I have a set of options, some orthogonal (can be combined in any combination), some exclusive (only one from the set is allowed), and need to pick a set of enum values so that they …