Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to get rid of "size_t" in doxygen collaboration diagram

Tags:

c++

uml

doxygen

Doxygen (v 1.8.11) creates nice UML collaboration diagrams. Nice, except for being cluttered with aggregation lines going to "size_t". Formally correct, but utterly useless. Is there a way to prevent "size_t" from appearing among the aggregated classes?

like image 300
Joachim W Avatar asked Apr 20 '16 09:04

Joachim W


1 Answers

Put size_t under EXCLUDE_SYMBOLS in your Doxygen configuration file.

http://www.doxygen.nl/config.html#cfg_exclude_symbols

like image 147
John Zwinck Avatar answered Sep 23 '22 01:09

John Zwinck