fixes for latest stl changes

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6383 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-10-10 07:58:03 +00:00
commit ca9e6834df
5 changed files with 13 additions and 13 deletions

View file

@ -39,6 +39,10 @@
#else
%{
%}
%inline
{
complex Conj(complex a)
@ -46,7 +50,8 @@
return conj(a);
}
float_complex Conjf(float_complex a)
complex float Conjf(float complex a)
{
return conj(a);
}