visual studio 2008 - Tool that will check for redundant includes in C++ project -
i need tool scan c++ project see if there includes not being referenced or being referenced redundantly. thanks.
you don't want this. want include header declares/defines used cpp file you're writing. if remove "redundant" headers included you're including when minor changes you'll editing files on damn place. use proper header guards make sure don't break one-definition rule.
Comments
Post a Comment