From db8443ef7d6c13e71036b8d6335c9a67b00d8880 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Fri, 6 May 2022 15:19:59 -0700 Subject: [PATCH] Remove attributes causing build failures on various platforms (#1587) --- node/Bond.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/node/Bond.hpp b/node/Bond.hpp index a285381f2..611705eab 100644 --- a/node/Bond.hpp +++ b/node/Bond.hpp @@ -1143,9 +1143,6 @@ class Bond { */ void log(const char* fmt, ...) { -#ifdef __GNUC__ - __attribute__((format(printf, 2, 3))) -#endif #ifdef ZT_TRACE time_t rawtime; struct tm* timeinfo; @@ -1175,9 +1172,6 @@ class Bond { */ void debug(const char* fmt, ...) { -#ifdef __GNUC__ - __attribute__((format(printf, 2, 3))) -#endif #ifdef ZT_DEBUG time_t rawtime; struct tm* timeinfo;