-Wshadow will "Warn whenever a local variable shadows another local variable.". Is there an equivalent in Visual C++ (2008)? I tried /W4 but it didn't pick up on it. I also tried Cppcheck but that didn't see it either.
e.g. if I inadvertently do:
class A
{
private:
int memberVar;
public:
void fn()
{
int memberVar = 27;
}
};
I would really like to know about it!
