mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-08 18:52:50 -06:00
implemented nonExist
This commit is contained in:
@@ -71,11 +71,13 @@ again: {
|
||||
|
||||
PgfText *PgfPrinter::get_text()
|
||||
{
|
||||
if (res == NULL) {
|
||||
res = (PgfText*) malloc(sizeof(PgfText));
|
||||
res->size = 0;
|
||||
PgfText *tmp = res;
|
||||
if (tmp == NULL) {
|
||||
tmp = (PgfText*) malloc(sizeof(PgfText));
|
||||
tmp->size = 0;
|
||||
}
|
||||
return res;
|
||||
res = NULL;
|
||||
return tmp;
|
||||
}
|
||||
|
||||
void PgfPrinter::flush_lambdas()
|
||||
|
||||
Reference in New Issue
Block a user