I have some code of this sort:
header.h
#define abc() xyz()
code.c
#include "header.h"
void xyz(){
int a = 24;
}
void func_lmn(){
abc();
}
When I run doxygen on this code, the call graoh for function func_lmn() does
not contain either abc() or xyz(). Is it possble to do the same?
Following flags have been turned on:
ENABLE_PREPROCESSOR = YES
MACRO_EXPANSION = YES
SKIP_FUNCTION_MACROS = NO
--
View this message in context: http://doxygen.10944.n7.nabble.com/Function-Macros-not-documented-tp7733.html
Sent from the Doxygen - Users mailing list archive at Nabble.com.
|