git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10176 626c5289-ae23-0410-ae9c-e8d60b6d4f22
13 lines
452 B
Text
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;
|
|
};
|
|
|