Which is better:
bool MyClass::someQuery() const; const bool MyClass::someQuery() const;
I\'ve been using \'const bool\' since I\'m sure I
As bool is going to be copied, it's the same, to put const or not. Plus you'll may have some compil problems.