git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-maciekd@11187 626c5289-ae23-0410-ae9c-e8d60b6d4f22
18 lines
655 B
Text
18 lines
655 B
Text
Version 1.3.40 (in progress)
|
|
============================
|
|
|
|
2009-04-09: wsfulton
|
|
Fix #2746858 - C macro expression using floating point numbers
|
|
|
|
2009-03-30: olly
|
|
[PHP] The default out typemap for char[ANY] now returns the string up to a
|
|
zero byte, or the end of the array if there is no zero byte. This
|
|
is the same as Python does, and seems more generally useful than
|
|
the previous behaviour of returning the whole contents of the array
|
|
including any zero bytes. If you want the old behaviour, you can provide
|
|
your own typemap to do this:
|
|
|
|
%typemap(out) char [ANY]
|
|
%{
|
|
RETVAL_STRINGL($1, $1_dim0, 1);
|
|
%}
|