From 22e0b32a8b98fcc5620e1299248855de762df7e8 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 21 Jan 2014 07:24:22 -0800 Subject: [PATCH 1/1] Fix crash when trying to use specifier without int. --- Cycript.yy.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cycript.yy.in b/Cycript.yy.in index 8368f81..f4c1ffd 100644 --- a/Cycript.yy.in +++ b/Cycript.yy.in @@ -1449,7 +1449,7 @@ IntegerType IntegerTypeOpt : IntegerType { $$ = $1; } - | + | { $$ = CYNew CYTypeVariable("int"); } ; PrimitiveType -- 2.45.2