git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13190 626c5289-ae23-0410-ae9c-e8d60b6d4f22
27 lines
1 KiB
Text
27 lines
1 KiB
Text
Below are the changes for the current release.
|
|
See the CHANGES file for changes in older releases.
|
|
See the RELEASENOTES file for a summary of changes in each release.
|
|
|
|
Version 2.0.8 (in progress)
|
|
===========================
|
|
2012-06-25: wsfulton
|
|
Fix using declarations combined with using directives so that types are correctly found in scope.
|
|
Example:
|
|
|
|
namespace Outer2 {
|
|
namespace Space2 {
|
|
class Thing2 {};
|
|
}
|
|
}
|
|
using namespace Outer2; // using directive
|
|
using Space2::Thing2; // using declaration
|
|
void useit2(Thing2 t) {}
|
|
|
|
2012-05-29: wsfulton
|
|
Fix #3529601 - seg fault when a protected method has the "director"
|
|
feature but the parent class does not. Also fix similar problems with
|
|
the allprotected feature.
|
|
|
|
2012-05-28: wsfulton
|
|
Fix seg fault when attempting to warn about an illegal destructor - #3530055, 3530078 and #3530118.
|
|
|