when I analyse a file with some overload functions, the doxygen can only get the function call tree of the first one. Do any other had encountered this problem?
This is my file:
#include<iostream>usingnamespacestd;voidprint(inti);voidprint(stringstr);intmain(){print(12);print("hello world!");return0;}voidprint(stringstr){cout<<"print a string:"<<i<<endl;}voidprint(inti){cout<<"print a integar:"<<i<<endl;}
when I analyse this file, I can only get main->print(int i) and can not get main->print(string str)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
when I analyse a file with some overload functions, the doxygen can only get the function call tree of the first one. Do any other had encountered this problem?
This is my file:
when I analyse this file, I can only get main->print(int i) and can not get main->print(string str)