Doxygen: Missing Call graph for internal functions -


I have started using Doxygen 1.8.7. I saw that the phone graphs are disappearing, when a deep function is located in the function. In the example below, the call graph for function1 () is absent. Is there any reliance on the parsing level?

  Zero function 1 (int CMD, int arg) {int ret = 0; Switch (CMD) {Case 1: if (RGE == 10) {rate = function2 (); }       break; Case 2: If (RGE == 10) {ret = function3 (); }       break; Case 3: If (RGE == 10) {ret = function4 (); }       break; Default: ret = function5 (); } Return; }  


Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -