diff options
author | William S Fulton <wsf@fultondesigns.co.uk> | 2003-12-12 23:19:07 +0000 |
---|---|---|
committer | William S Fulton <wsf@fultondesigns.co.uk> | 2003-12-12 23:19:07 +0000 |
commit | 87cd33a6d62e18dc39ce67783f1c58172feed578 (patch) | |
tree | 7ce8d141ee7720963ec201cc73e2f5cd009a6035 /Examples/test-suite/protected_rename.i | |
parent | 9494cfbf858d7378659660edfcb8b772e8b3cf96 (diff) | |
download | swig-87cd33a6d62e18dc39ce67783f1c58172feed578.tar.gz |
Added missing function body which was causes linker errors
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5552 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Examples/test-suite/protected_rename.i')
-rw-r--r-- | Examples/test-suite/protected_rename.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Examples/test-suite/protected_rename.i b/Examples/test-suite/protected_rename.i index 9728df1f0..41f7ac4ae 100644 --- a/Examples/test-suite/protected_rename.i +++ b/Examples/test-suite/protected_rename.i @@ -13,7 +13,7 @@ class Foo { protected: int x; public: - void y(); + void y() {} }; %} |