nichel
-
2012-04-05
- priority: 5 --> 8
version:Exuberant Ctags 5.8
there are situations in pjsip like below:
#define PJ_DEF(type) type
typedef int pj_status_t;
PJ_DEF(pj_status_t) fun(void)
{
return 0;
}
it did not create a tag for fun just for PJ_DEF. if return type pj_status_t replaced with conventional type(such as int),then it create the tag for fun and PJ_DEF disappear. it is very bad.