mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
fix a potential crash
This commit is contained in:
@@ -52,7 +52,7 @@ public:
|
||||
|
||||
PgfLiteral read_literal();
|
||||
PgfExpr read_expr();
|
||||
void read_expr(ref<PgfExpr> r) { *r = read_expr(); };
|
||||
void read_expr(ref<PgfExpr> r) { auto res = read_expr(); *r = res; };
|
||||
|
||||
void read_hypo(ref<PgfHypo> hypo);
|
||||
ref<PgfDTyp> read_type();
|
||||
|
||||
Reference in New Issue
Block a user