1
0
forked from GitHub/gf-core

comment out the call to the LRTableMaker

This commit is contained in:
Krasimir Angelov
2024-09-05 14:03:07 +02:00
parent 5239ce5458
commit 6c2a94d428

View File

@@ -752,8 +752,8 @@ ref<PgfConcr> PgfReader::read_concrete()
auto printnames = read_namespace<PgfConcrPrintname>(&PgfReader::read_printname); auto printnames = read_namespace<PgfConcrPrintname>(&PgfReader::read_printname);
concrete->printnames = printnames; concrete->printnames = printnames;
PgfLRTableMaker maker(abstract, concrete); //PgfLRTableMaker maker(abstract, concrete);
concrete->lrtable = maker.make(); //concrete->lrtable = maker.make();
return concrete; return concrete;
} }