From 7c4855381b852ce32ad19aa92e7636b212495495 Mon Sep 17 00:00:00 2001 From: Mihai <299015+mh-dm@users.noreply.github.com> Date: Wed, 29 May 2024 02:22:39 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Prevent=20'EVAL'=20macro=20colli?= =?UTF-8?q?sion=20(#27132)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Marlin/src/core/macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/core/macros.h b/Marlin/src/core/macros.h index 47ba840d2b..e91187584d 100644 --- a/Marlin/src/core/macros.h +++ b/Marlin/src/core/macros.h @@ -679,7 +679,7 @@ #define DEFER4(M) M EMPTY EMPTY EMPTY EMPTY()()()() // Force define expansion -#define EVAL EVAL16 +#define EVAL(V...) EVAL16(V) #define EVAL4096(V...) EVAL2048(EVAL2048(V)) #define EVAL2048(V...) EVAL1024(EVAL1024(V)) #define EVAL1024(V...) EVAL512(EVAL512(V))