From b3ef14c39b22f8fd78f3fa196cd39d7dd5c2f659 Mon Sep 17 00:00:00 2001 From: krangelov Date: Mon, 8 Nov 2021 10:41:09 +0100 Subject: [PATCH] another fix for MacOS --- src/runtime/c/pgf/data.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/runtime/c/pgf/data.h b/src/runtime/c/pgf/data.h index 67c2ea8c2..384f82af3 100644 --- a/src/runtime/c/pgf/data.h +++ b/src/runtime/c/pgf/data.h @@ -133,17 +133,16 @@ struct PGF_INTERNAL_DECL PgfConcrLinRes { typedef object PgfSymbol; -struct PGF_INTERNAL_DECL PgfSymbolIdx { +struct PGF_INTERNAL_DECL PgfSymbolCat { + static const uint8_t tag = 0; size_t d; PgfConcrLIndex r; }; -struct PGF_INTERNAL_DECL PgfSymbolCat : PgfSymbolIdx { - static const uint8_t tag = 0; -}; - -struct PGF_INTERNAL_DECL PgfSymbolLit : PgfSymbolIdx { +struct PGF_INTERNAL_DECL PgfSymbolLit { static const uint8_t tag = 1; + size_t d; + PgfConcrLIndex r; }; struct PGF_INTERNAL_DECL PgfSymbolVar {