From dce4b39d50c3c0b640cb324cfce211d69ea4b3c5 Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Tue, 7 Sep 2021 15:29:28 +0200 Subject: [PATCH] define USE_TYPED_RSET as empty string to match warnings with drivers which define it in their code --- App/tools/driver.makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App/tools/driver.makefile b/App/tools/driver.makefile index 4fca51e..98d92b2 100644 --- a/App/tools/driver.makefile +++ b/App/tools/driver.makefile @@ -691,7 +691,7 @@ ifdef BASE_3_16 # Suppress "'rset' is deprecated" warning for old drivers # but not on record types where it would cause an error ifndef USING_NEW_RSET -SUPPRESS_RSET_WARNING = -DUSE_TYPED_RSET +SUPPRESS_RSET_WARNING = -DUSE_TYPED_RSET= USR_CPPFLAGS += ${SUPPRESS_RSET_WARNING} REC_SUPPRESS_RSET_WARNING=-Wno-deprecated-declarations ifeq ($(OS_CLASS),WIN32)