In tagmanager/ctags/c.c:

>  
> -	if (! st->gotArgs)
> -		return vStringValue(st->firstToken->name);	/* ignore non-functions */
> +	switch (st->declaration) {
> +		case DECL_BASE:
> +		case DECL_FUNCTION:
> +		case DECL_FUNCTION_TEMPLATE:
> +			break;
> +		default:
> +			return vStringValue(st->firstToken->name);
> +	}
>  
>  	if (vt == NULL)

Uh, right, I missed that.


Reply to this email directly or view it on GitHub.