I have noticed some inconsistencies in the .rtf function.

Sometimes it puts the caller and called graph just after the name, and the 
code listing after that, and at other times it puts the caller and call 
graph AFTER the code listing.
as in

foo()

call graph

caller graph

       {
       gray box with code for foo in it
       }

OR

foo()
       {
       gray box with code for foo in it
       }

call graph

caller graph


I have also seen it NOT generate a caller graph, and call graph for a 
function that is clearly called multiple times from main.  That function 
does not call any, so I would expect the call graph to be blank, but
not the caller graph.....


I noticed that the call graph for main does not include calls made in 
conditionals.

For example
  if (dwell == 0)
     {
     control_function();
     }

control_function will not be referenced in the call diagram for main.

I am wondering what causes these?

I just used doxygen 1.8.x with it's default settings.  This is  code that 
does not have
any doxygen comments in it.

I have made extensive edits to the rtf file, so am not sure I want to try 
to re-generate it.


------------------------------------------------------------------------------
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to