From 98a24ebf31d071f0d13bc67f165ce904c49db7d7 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Mon, 10 Apr 2017 16:58:54 +0100 Subject: [PATCH] =?UTF-8?q?The=20macro=20=E2=80=9Cmagics=E2=80=9D=20is=20v?= =?UTF-8?q?ery=20intensive=20for=20the=20preprocessor=20in=20the=20measure?= =?UTF-8?q?ment=20code=20which=20has=20numerous=20serialisable=20classes.?= =?UTF-8?q?=20Reducing=20the=20number=20of=20serialisable=20fields=20to=20?= =?UTF-8?q?64=20(instead=20of=201024)=20helps=20a=20lot,=20this=20is=20eno?= =?UTF-8?q?ugh=20for=20now=20and=20can=20be=20extended=20trivially=20if=20?= =?UTF-8?q?needed=20in=20the=20future.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/serialisation/MacroMagic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/serialisation/MacroMagic.h b/lib/serialisation/MacroMagic.h index ca789312..a864989c 100644 --- a/lib/serialisation/MacroMagic.h +++ b/lib/serialisation/MacroMagic.h @@ -54,7 +54,7 @@ THE SOFTWARE. #define GRID_MACRO_EMPTY() -#define GRID_MACRO_EVAL(...) GRID_MACRO_EVAL1024(__VA_ARGS__) +#define GRID_MACRO_EVAL(...) GRID_MACRO_EVAL64(__VA_ARGS__) #define GRID_MACRO_EVAL1024(...) GRID_MACRO_EVAL512(GRID_MACRO_EVAL512(__VA_ARGS__)) #define GRID_MACRO_EVAL512(...) GRID_MACRO_EVAL256(GRID_MACRO_EVAL256(__VA_ARGS__)) #define GRID_MACRO_EVAL256(...) GRID_MACRO_EVAL128(GRID_MACRO_EVAL128(__VA_ARGS__))