summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSwati Sharma <itawswati@gmail.com>2012-07-01 02:29:59 +0000
committerSwati Sharma <itawswati@gmail.com>2012-07-01 02:29:59 +0000
commitcbbea702ce1058aadf237fad6f23a2f83b1840fe (patch)
tree3d0d46019219f0714a26a3281a8c5d2b792ee29a
parentfd590324623c71a88d3cbf64cd24fd744de771b4 (diff)
downloadswig-cbbea702ce1058aadf237fad6f23a2f83b1840fe.tar.gz
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
-rw-r--r--Lib/objc/objc.swg6
1 files 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