Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Thu, 12 Oct 2023 20:30:01 UTC Commit: d364c30e7973ceaf387f8c64211d3980a462f90b https://github.com/geany/geany/commit/d364c30e7973ceaf387f8c64211d3980a462f9...
Log Message: ----------- Fix compilation when TM_DEBUG is defined
This function doesn't get normally compiled because TM_DEBUG is undefined and its declaration in header differs from its implementation.
Modified Paths: -------------- src/tagmanager/tm_tag.h
Modified: src/tagmanager/tm_tag.h 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -154,7 +154,7 @@ gboolean tm_tag_is_anon(const TMTag *tag);
const char *tm_tag_type_name(const TMTag *tag);
-TMTagType tm_tag_name_type(const char* tag_name); +TMTagType tm_tag_name_type(const char* tag_name, TMParserType lang);
void tm_tag_print(TMTag *tag, FILE *fp);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).