mirror of https://github.com/swig/swig
Add CHANGES note for virtual destructor in templates bug in prev commit
This commit is contained in:
parent
3f1d77ee0f
commit
0207a9b24f
|
@ -5,6 +5,11 @@ See the RELEASENOTES file for a summary of changes in each release.
|
|||
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
|
||||
[Python] Pull patch #3 from ptomulik to fix SF Bug #1295 - standard exceptions as
|
||||
classes using the SWIG_STD_EXCEPTIONS_AS_CLASSES macro.
|
||||
|
|
|
@ -21,4 +21,4 @@ template <class X>
|
|||
};
|
||||
%}
|
||||
%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
|
||||
|
|
Loading…
Reference in New Issue