Jorg Brown
Results
1
issues of
Jorg Brown
I use this to conveniently determine if any of an arbitrary number of booleans is true: ``` constexpr bool Or(std::initializer_list) { return false; } constexpr bool Or(std::initializer_list) { return true;...
bug