Which is better:
bool MyClass::someQuery() const; const bool MyClass::someQuery() const;
I\'ve been using \'const bool\' since I\'m sure I
It completely doesn't matter. Therefore, the consensus is to return just bool.
bool
The reason that it doesn't matter is that you can't call non-const member functions anyway; bool is not a class or struct.