From fe402498e1b688f74eaa41d17a02d7fedcac6c3a Mon Sep 17 00:00:00 2001 From: Martin Ettl Date: Wed, 27 Feb 2019 15:38:31 +0100 Subject: [PATCH] qt.cfg: Added support for Q_DECLARE_PUBLIC()-macro. --- cfg/qt.cfg | 1 + test/cfg/gnu.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cfg/qt.cfg b/cfg/qt.cfg index 1edb4bd77..2af7b8c80 100644 --- a/cfg/qt.cfg +++ b/cfg/qt.cfg @@ -1336,6 +1336,7 @@ + diff --git a/test/cfg/gnu.c b/test/cfg/gnu.c index 4ae0dc5e1..799f0cc4e 100644 --- a/test/cfg/gnu.c +++ b/test/cfg/gnu.c @@ -24,7 +24,7 @@ void ignoreleak(void) void memleak_asprintf(char **ptr, const char *fmt, const int arg) { - // No warning is expected for + // No warning is expected for if (-1 != asprintf(ptr,fmt,arg)) { free(ptr); }