Which is better:
bool MyClass::someQuery() const; const bool MyClass::someQuery() const;
I\'ve been using \'const bool\' since I\'m sure I
const bool func(); bool f = func();
0 errors, 0 warnings. What have you accomplished other than unnecessary code inflation?