Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Wed, 05 Feb 2025 23:36:37 UTC Commit: eddaf38690b7e0119e46b5576f5ac0cd3e5ea221 https://github.com/geany/geany/commit/eddaf38690b7e0119e46b5576f5ac0cd3e5ea2...
Log Message: ----------- Remove unused variables
Modified Paths: -------------- ctags/parsers/geany_lcpp.c src/filetypes.c
Modified: ctags/parsers/geany_lcpp.c 2 lines changed, 0 insertions(+), 2 deletions(-) =================================================================== @@ -646,11 +646,9 @@ static int skipToEndOfCxxRawLiteralString (void) static int skipToEndOfChar (void) { int c; - int count = 0;
while ((c = getcAndCollect ()) != EOF) { - ++count; if (c == BACKSLASH) getcAndCollect (); /* throw away next character, too */ else if (c == SINGLE_QUOTE)
Modified: src/filetypes.c 2 lines changed, 0 insertions(+), 2 deletions(-) =================================================================== @@ -106,8 +106,6 @@ static GeanyFiletypeGroupID get_group(const gchar *name)
static GeanyFiletypeGroupID get_filetype_group(const gchar *title, const gchar *name) { - GeanyFiletypeGroupID ret; - if (g_strcmp0(name, "None") == 0) return GEANY_FILETYPE_GROUP_NONE;
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).