If I do this:
// In header class Foo { void foo(bar*); }; // In cpp void Foo::foo(bar* const pBar) { //Stuff }
The compiler does not comp
So the second const in:
void Foo::foo(const bar* const);
Is not part of the method signature?