Tagged Questions

2
votes
4answers
74 views

C++ Bus error when using `^=` and `<<` on a class member `unsigned long`

I am trying to implement the random number generator defined in this answer. There is some ambiguity, at least from my knowledge, as to how the first line, static unsigned long x=123456789, ...
2
votes
6answers
873 views

c++ multiple enums in one function argument using bitwise or “|”

I recently came across some functions where you can pass multiple enums like this: myFunction(One | Two); Since I think this is a really elegant way I tried to implement something like that myself: ...
2
votes
5answers
2k views

C++ Binary operators order of precedence

In what order are the following parameters tested (in C++)? if (a || b && c) { } I've just seen this code in our application and I hate it, I want to add some brackets to just clarify the ...