Hi All,
I started using Doxygen-1.8.7. I noticed call graphs are missing when the
called function is located deeper in a file. In the below example, the call
graph for function1() is absent. Is there any dependency on the parsing
level?

void function1(int cmd, int arg)
{
  int ret = 0;
  switch (cmd)
  {
    case 1:
      if(arg == 10)
      {
        ret = function2();
      }
      break;
    case 2:
      if(arg == 10)
      {
        ret = function3();
      }
      break;
    case 3:
      if(arg == 10)
      {
        ret = function4();
      }
      break;
    default:
      ret = function5();
      break;
  }
  return;
}

Thanks,
Pradyumna
------------------------------------------------------------------------------
Want fast and easy access to all the code in your enterprise? Index and
search up to 200,000 lines of code with a free copy of Black Duck
Code Sight - the same software that powers the world's largest code
search on Ohloh, the Black Duck Open Hub! Try it now.
http://p.sf.net/sfu/bds
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to