Are there any no-cost tools (or direct Eclipse CDT plugins) that scan C++ code for unused functions, methods, variables, includes...?
I only found this stuff for C# and Java, but I'd like to have it for C++.
Cppcheck and also compilers can find unused variables in a scope, but they don't find, for example, unused member functions in classes or unused includes in a .cpp file. It would be good to have something like that to find deprecated and old code in the project.