From af606a09b80f93ef3609fce684007a532074c09d Mon Sep 17 00:00:00 2001 From: Aymane Bahssain Date: Fri, 23 Jan 2026 10:01:35 +0100 Subject: [PATCH] feat: deprecate boolean typedef in favor of bool Ref: arduino#242 Signed-off-by: Aymane Bahssain --- api/Common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Common.h b/api/Common.h index 9b28f40a..dab617c2 100644 --- a/api/Common.h +++ b/api/Common.h @@ -93,7 +93,7 @@ typedef void (*voidFuncPtrParam)(void*); #endif /* TODO: request for removal */ -typedef bool boolean; +typedef bool boolean __attribute__((deprecated)); typedef uint8_t byte; typedef uint16_t word;