summaryrefslogtreecommitdiff
path: root/Examples/test-suite/smart_pointer_const_overload.i
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/smart_pointer_const_overload.i')
-rw-r--r--Examples/test-suite/smart_pointer_const_overload.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/test-suite/smart_pointer_const_overload.i b/Examples/test-suite/smart_pointer_const_overload.i
index e3b000b52..75a137b73 100644
--- a/Examples/test-suite/smart_pointer_const_overload.i
+++ b/Examples/test-suite/smart_pointer_const_overload.i
@@ -34,7 +34,7 @@ struct Foo {
Foo() : x(0), xp(&x), y(0), yp(&y), access(0) { }
int getx() const { return x; }
void setx(int x_) { x = x_; }
- static void stat() {}
+ static void statMethod() {}
};
%}