From 9ae961a6ae77773747eab40101a8919cf19bcec3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Wed, 26 Aug 2015 16:52:38 -0400 Subject: [PATCH] contrib/objcwrapper grammar: add the size_t primitive type MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- contrib/objcwrapper/grammar/objc.sablecc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contrib/objcwrapper/grammar/objc.sablecc b/contrib/objcwrapper/grammar/objc.sablecc index f5c90c8..0a4bb52 100644 --- a/contrib/objcwrapper/grammar/objc.sablecc +++ b/contrib/objcwrapper/grammar/objc.sablecc @@ -197,7 +197,8 @@ Parser 'long long int' | 'float' | 'double' | - 'long double'; + 'long double' | + 'size_t'; classe = {class:} class | -- 1.7.9.5