From cbbea702ce1058aadf237fad6f23a2f83b1840fe Mon Sep 17 00:00:00 2001 From: Swati Sharma Date: Sun, 1 Jul 2012 02:29:59 +0000 Subject: Fixed Typo in objc.swg.Missing semicolon git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-objc@13215 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Lib/objc/objc.swg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/objc/objc.swg b/Lib/objc/objc.swg index 095686844..4e2ed5c2c 100644 --- a/Lib/objc/objc.swg +++ b/Lib/objc/objc.swg @@ -624,15 +624,15 @@ unsigned long, unsigned short %{ NSString* aFormat = [NSString stringWithString:@"The value is %d"]; - [NSException raise:@"$1_type exception" format: aFormat, $1] %} + [NSException raise:@"$1_type exception" format: aFormat, $1]; %} %typemap(throws) SWIGTYPE, SWIGTYPE &, SWIGTYPE *, SWIGTYPE [], SWIGTYPE [ANY] %{ NSString* aFormat = [NSString stringWithString:@"The value is %d"]; - [NSException raise:@"$1_type exception" format: aFormat, $1] %} + [NSException raise:@"$1_type exception" format: aFormat, $1]; %} %typemap(throws) char * %{ NSString* aFormat = [NSString stringWithString:@"%s"]; - [NSException raise:@"$1_type exception" format: aFormat, $1] %} + [NSException raise:@"$1_type exception" format: aFormat, $1]; %} // Objective-C specific directives -- cgit v1.2.1