Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: GitHub noreply@github.com Date: Sun, 03 Mar 2024 13:36:48 UTC Commit: c8da14ac4dda4c911fb109eb95e25eccfe270308 https://github.com/geany/geany-plugins/commit/c8da14ac4dda4c911fb109eb95e25e...
Log Message: ----------- Merge pull request #1309 from eht16/issue1304_fix_cppcheck_argument_syntax
Add missing sign for cppcheck --template argument
Modified Paths: -------------- build/cppcheck-geany-plugins.cfg build/cppcheck.mk
Modified: build/cppcheck-geany-plugins.cfg 6 lines changed, 6 insertions(+), 0 deletions(-) =================================================================== @@ -1,5 +1,11 @@ <?xml version="1.0"?> <def format="2"> + <!-- Geany-Plugins macros --> + <define name="PLUGIN" value=""foo""/> + <!-- GLib macros --> + <define name="G_GSSIZE_FORMAT" value=""li""/> + <define name="G_GINT64_MODIFIER" value=""l""/> + <define name="G_DIR_SEPARATOR_S" value=""/""/> <define name="G_DEFINE_TYPE(TN, t_n, T_P)" value=""/> <define name="G_DEFINE_BOXED_TYPE(TypeName,type_name,copy_func,free_func)" value=""/> </def>
Modified: build/cppcheck.mk 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -3,7 +3,7 @@ if HAVE_CPPCHECK
check-cppcheck: $(srcdir) $(CPPCHECK) \ - -q --template gcc --error-exitcode=2 \ + -q --template=gcc --error-exitcode=2 \ --library=$(top_srcdir)/build/cppcheck-geany-plugins.cfg \ -I$(GEANY_INCLUDEDIR)/geany \ $(AM_CPPCHECKFLAGS) $(CPPCHECKFLAGS) \
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).