Can i know if doxygen is able to show a recursive call for a recursive function such as this, the call graph is not able to show a loop arrow
void recurse() { recurse(); //Function calls itself }
Log in to post a comment.
Can i know if doxygen is able to show a recursive call for a recursive function such as this, the call graph is not able to show a loop arrow
void recurse()
{
recurse(); //Function calls itself
}