Skip to content

Commit

Permalink
🐛 Prevent 'EVAL' macro collision (#27132)
Browse files Browse the repository at this point in the history
  • Loading branch information
mh-dm authored and thinkyhead committed May 28, 2024
1 parent 63fba61 commit 7c48553
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/core/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit 7c48553

Please sign in to comment.