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.

link|improve this question

possible duplicate of C/C++ Free alternative to Lint? (or maybe not a duplicate?) – birryree Sep 6 '11 at 14:22
g++ will catch unused local variables. Just because a (public) member function is unused doesn't mean it shouldn't still remain as part of the class API. – Mark B Sep 6 '11 at 14:41
Be aware of that a lot of these tools define unused include as "compiles when removing this include" which is something different, as each standard c++ header can include any other header, but you should never rely on that. (This might also be true for certain libraries). It seldomly really harms to include files from 3rd party libraries that are not needed in that particular .cpp file of yours. – PlasmaHH Sep 6 '11 at 14:43
@Mark B But it could mean that it is not needed anymore. – blubberbernd Sep 6 '11 at 14:44
@PlasmaHH: On a large project, you want as little header stuff as you can get away with in each source file, so you don't want to include unnecessary headers. Not only will each compile take a little longer (and, hence, the whole compile will take significantly longer), but in event of changes you'll be recompiling more than you have to (in your third-party example, changes won't be frequent, but they may happen). Also, the more headers included, the more chance that something potentially bad in two of them will cause real problems. – David Thornley Sep 6 '11 at 17:44
feedback

2 Answers

PCLint is a good one for this kind of static analysis.

link|improve this answer
I shoudl have been more clear: I'm looking fore something at no cost (best: OpenSource). – blubberbernd Sep 6 '11 at 14:02
feedback

A version of "NDepend" exists for C++ (cppdepend). I haven't tried it, but I did use NDepend in the past. It should be good, YMMV.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.