varargs fixes.

Added passthrough out typemaps for internal Octave types.



git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10320 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Xavier Delacour 2008-03-24 22:33:55 +00:00
commit 7b1cab1554
4 changed files with 31 additions and 8 deletions

View file

@ -626,11 +626,11 @@ and then used from Octave
</p>
<div class="targetlang"><pre>
octave:3> mul(4,3)
octave:1> mul(4,3)
ans = 12
octave:4> mul(4.2,3.6)
octave:2> mul(4.2,3.6)
ans = 15.120
octave:2> mul(3+4i,10+2i)
octave:3> mul(3+4i,10+2i)
ans = 22 + 46i
</pre></div>