char is signed (it was getting mapped to EOF). Fixes SF#1518219. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10211 626c5289-ae23-0410-ae9c-e8d60b6d4f22
64 lines
2.2 KiB
Text
64 lines
2.2 KiB
Text
Version 1.3.34 (in progress)
|
|
============================
|
|
|
|
01/18/2008: olly
|
|
Fix handling of byte value 255 in input files on platforms where
|
|
char is signed (it was getting mapped to EOF). Fixes SF#1518219.
|
|
|
|
01/16/2008: wsfulton
|
|
Fix template member variables wrapped by a smart pointer. Bug reported
|
|
by Robert Lupton.
|
|
|
|
01/14/2008: mgossage
|
|
Substantial changes to configure script for detecting lua.
|
|
Code can now link to liblua.a, liblua50.a or liblua51.a
|
|
It's also a lot neater now.
|
|
|
|
12/16/2007: wsfulton
|
|
[Perl] Backed out #1798728 - numbers can be passed to functions taking char *
|
|
|
|
12/16/2007: wsfulton
|
|
Fix #1832613 - Templates and some typedefs involving pointers or function pointers
|
|
|
|
12/12/2007: wsfulton
|
|
[Java] Fix #1632625 - Compilation errors on Visual C++ 6 when using directors.
|
|
|
|
12/12/2007: wsfulton
|
|
[Perl] Fix #1798728 - numbers can be passed to functions taking char *.
|
|
|
|
12/12/2007: wsfulton
|
|
Fix #1819847 %template with just one default template parameter
|
|
|
|
template<typename T = int> class Foo {...};
|
|
%template(FooDefault) Foo<>;
|
|
|
|
12/12/2007: mgossage
|
|
[Lua] Small correction on Lua.html
|
|
|
|
12/09/2007: wsfulton
|
|
Apply patch #1838248 from Monty Taylor for vpath builds of SWIG.
|
|
|
|
12/08/2007: wsfulton
|
|
[Lua] Fixes to remove gcc-4.2 warnings
|
|
|
|
12/06/2007: wsfulton
|
|
Fix #1734415 - template template parameters with default arguments such as:
|
|
|
|
template<typename t_item, template<typename> class t_alloc = pfc::alloc_fast >
|
|
class list_t : public list_impl_t<t_item,pfc::array_t<t_item,t_alloc> > { ... };
|
|
|
|
12/04/2007: mgossage
|
|
[lua] Fix a bug in the class hierachy code, where the methods were not propagated,
|
|
if the name ordering was in a certain order.
|
|
Added new example programs (dual, embed) and runtime tests for test-suite.
|
|
|
|
11/30/2007: wsfulton
|
|
Fix using statements using a base class method where the methods were overloaded.
|
|
Depending on the order of the using statements and method declarations, these
|
|
were previously generating uncompileable wrappers, eg:
|
|
|
|
struct Derived : Base {
|
|
virtual void funk();
|
|
using Base::funk;
|
|
};
|
|
|