@elextr commented on this pull request.
In src/tagmanager/tm_parser.c:
> @@ -818,6 +818,28 @@ void tm_parser_verify_type_mappings(void) } +/* determine anonymous tags from tag names only when corresponding + * ctags information is not available */ +gboolean tm_parser_is_anon_name(TMParserType lang, gchar *name) +{ + guint i; + char dummy; + + if (lang == TM_PARSER_C || lang == TM_PARSER_CPP) + { + return sscanf(name, "anon_%*[a-z]_%u%c", &i, &dummy) == 1 ||
Yes on Linux but IIUC its not portable, especially a-z
meaning lower case ASCII alphabetic, see here
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
You are receiving this because you are subscribed to this thread.