In tagmanager/src/tm_source_file.c:

> +		return TAG_ACCESS_PRIVATE;
> +	else if (0 == strcmp("friend", access))
> +		return TAG_ACCESS_FRIEND;
> +	else if (0 == strcmp("default", access))
> +		return TAG_ACCESS_DEFAULT;
> +
> +#ifdef TM_DEBUG
> +	g_warning("Unknown access type %s", access);
> +#endif
> +	return TAG_ACCESS_UNKNOWN;
> +}
> +
> +/*
> + Initializes a TMTag structure with information from a tagEntryInfo struct
> + used by the ctags parsers. Note that the TMTag structure must be malloc()ed
> + before calling this function. This function is called by tm_tag_new() - you

not called by tm_tag_new() anymore


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub