Not linking fix

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4658 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2003-04-03 12:10:03 +00:00
commit 13de06ba39

View file

@ -3,12 +3,12 @@
%inline %{
template <typename T> struct X {
X(int);
X(int) {}
};
template <typename T> struct Y {
Y();
int spam(T t = T(0));
Y() {}
int spam(T t = T(0)) { return 0; }
};
%}