Which is better:
bool MyClass::someQuery() const; const bool MyClass::someQuery() const;
I\'ve been using \'const bool\' since I\'m sure I
This is the case when const adds no value but inflates the code and makes the reader think more. What's the point of this const? The caller can copy the value into some non-const variable and do whatever he wants with it anyway.
const