Last modified: 2013-06-21 23:35:05 UTC
Some methods, such as wfProfileIn(), wfProfileOut() don't really add much to a lot of the call graphs, and end up making them a lot more complex Being able to blacklist methods from inclusion would be really useful
Maybe http://www.stack.nl/~dimitri/doxygen/config.html#cfg_exclude_symbols can be used for this.
Should probably be reported upstream. There are commands to enable the graphs on a per function basis \callgraph \callergraph . Maybe two new commands could be added to explicitly disable them such as \nocallgraph & \nocallergraph ?
Is this still a problem? maintenance/Doxyfile now specifies CALL_GRAPH = NO and CALLER_GRAPH = NO.
Reedy: Is this still a problem? > maintenance/Doxyfile now specifies CALL_GRAPH = NO and CALLER_GRAPH = NO.
Yes, well, sort of. The call graphs have some use, but there are numerous methods that we don't really care if they are called - it gives no information. They were turned off because they were too big etc