Add CHANGES note for virtual destructor in templates bug in prev commit

This commit is contained in:
William S Fulton 2013-01-06 01:49:25 +00:00
parent 3f1d77ee0f
commit 0207a9b24f
2 changed files with 6 additions and 1 deletions

View File

@ -5,6 +5,11 @@ See the RELEASENOTES file for a summary of changes in each release.
Version 2.0.10 (in progress) Version 2.0.10 (in progress)
============================ ============================
2013-01-06: wsfulton
Pull patch #4 from ptomulik to fix SF Bug #1296 - Fix incorrect warning for virtual destructors
in templates, such as:
Warning 521: Illegal destructor name B< A >::~B(). Ignored.
2013-01-05: wsfulton 2013-01-05: wsfulton
[Python] Pull patch #3 from ptomulik to fix SF Bug #1295 - standard exceptions as [Python] Pull patch #3 from ptomulik to fix SF Bug #1295 - standard exceptions as
classes using the SWIG_STD_EXCEPTIONS_AS_CLASSES macro. classes using the SWIG_STD_EXCEPTIONS_AS_CLASSES macro.

View File

@ -21,4 +21,4 @@ template <class X>
}; };
%} %}
%template(B_AF) B<A,float>; %template(B_AF) B<A,float>;
%template(B_A) B<A>; // this instantiation triggert the warning %template(B_A) B<A>; // this instantiation triggers the warning