summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2014-03-15 21:00:25 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2014-03-15 21:00:25 +0000
commitb59feff9f9b4762a5b8153e9de035ba37b8ad50e (patch)
tree34b98c5b0dc0050e075b904e4738e9a20bdb206e
parente2b6de8a039a39f7d854b2dd62eb9b93fb79e358 (diff)
downloadswig-b59feff9f9b4762a5b8153e9de035ba37b8ad50e.tar.gz
Test case compiler warning fix
-rw-r--r--Examples/test-suite/li_swigtype_inout.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/test-suite/li_swigtype_inout.i b/Examples/test-suite/li_swigtype_inout.i
index 8b695a925..9d7e9a4c6 100644
--- a/Examples/test-suite/li_swigtype_inout.i
+++ b/Examples/test-suite/li_swigtype_inout.i
@@ -12,7 +12,7 @@
%inline %{
#include <iostream>
struct XXX {
- XXX(int value) : value(value) {
+ XXX(int v) : value(v) {
if (debug) std::cout << "Default Constructor " << value << " " << this << std::endl;
count++;
}