Branch: refs/heads/master Author: Thomas Martitz t.martitz@avm.de Committer: Thomas Martitz t.martitz@avm.de Date: Wed, 02 Oct 2024 05:52:04 UTC Commit: e050481355ee44ea49f263ff356f52d0daabe8d1 https://github.com/geany/geany/commit/e050481355ee44ea49f263ff356f52d0daabe8...
Log Message: ----------- Rename enum member to workaround GI issue
GI synthesizes an enum type "TMTagAttrType" with the members none_t, name_t and so on (common prefix "tm_tag_attr_" removed). In that context, tm_tag_attr_time_ aka. time_t clashes with the global time_t type.
Since the member is unused so far simply rename it as an easy way out.
Modified Paths: -------------- src/tagmanager/tm_tag.h
Modified: src/tagmanager/tm_tag.h 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -59,7 +59,7 @@ typedef enum tm_tag_attr_inheritance_t = 64, /**< Parent classes */ tm_tag_attr_arglist_t = 128, /**< Argument list */ tm_tag_attr_local_t = 256, /**< If it has local scope */ - tm_tag_attr_time_t = 512, /**< Modification time (File tag only) */ + tm_tag_attr_mtime_t = 512, /**< Modification time (File tag only) */ tm_tag_attr_vartype_t = 1024, /**< Variable Type */ tm_tag_attr_access_t = 2048, /**< Access type (public/protected/private) */ tm_tag_attr_impl_t = 4096, /**< Implementation (e.g. virtual) */
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).