example error fixed as reported by Clint Olsen

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6973 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2005-02-20 19:47:59 +00:00
commit a6d40acd46

View file

@ -2210,7 +2210,7 @@ To make this work with a reference, you can use a typemap such as this:
%typemap(argout) double * {
SV *tempsv;
tempsv = SvRV($input);
sv_setnv(tempsv, *$input);
sv_setnv(tempsv, *$1);
}
</pre></blockquote>