RE: [GD-General] C++ analyzers?
Brought to you by:
vexxed72
From: Brian H. <bri...@py...> - 2002-07-17 18:59:47
|
I've used Doxygen and like it quite a bit, although getting it configured takes a bit of work (and a friend pointed out to me that apparently it doesn't work with ANSI C). However, AFAIK it only documents, it doesn't actually generate many useful warnings unless it finds slightly mismatched prototypes. You have to go through and examine the class graph to see discrepancies, but unfortunately there are a lot of root nodes since all base classes are siblings (so if you have a lot of structs, it gets cluttered, quickly). It also doesn't differentiate between locally defined (file scope) data structures. I'll check out PC-Lint though. Thanks, Brian |