summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2014-10-16 07:48:05 +0100
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2014-10-21 07:34:51 +0100
commit2862a0a6bc2b025f970ec695c4f2295cca2d534a (patch)
treea34eaf03026a0b491190ac7bf54569d00dcdc5ff /CHANGES
parente4c792c1623b70d39c303060362081813e09b018 (diff)
downloadswig-2862a0a6bc2b025f970ec695c4f2295cca2d534a.tar.gz
Syntax fix using %feature in documentation
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES4
1 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 9fef3ae06..d205fcba4 100644
--- a/CHANGES
+++ b/CHANGES
@@ -9456,7 +9456,7 @@ Version 1.3.23 (November 11, 2004)
wrapper method only and not the extra overloaded methods that SWIG generates.
For example:
- %feature("except") void hello(int i=0, double d=0.0);
+ %feature("except") hello(int i=0, double d=0.0);
void hello(int i=0, double d=0.0);
will apply the feature to all three wrapper methods, that is:
@@ -9467,7 +9467,7 @@ Version 1.3.23 (November 11, 2004)
If the default arguments are not specified in the feature:
- %feature("except") void hello(int i, double d);
+ %feature("except") hello(int i, double d);
void hello(int i=0, double d=0.0);
then the feature will only apply to this wrapper method: