swig/CHANGES.current
2007-11-30 22:34:50 +00:00

13 lines
452 B
Text

Version 1.3.34 (in progress)
============================
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;
};