From bd7b79c691d24e5e78fd203e6a6c14353671f10a Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 20 May 2005 22:40:23 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7198 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/CHANGES.current | 19 +++++++++++++++++++ SWIG/Examples/test-suite/csharp/.cvsignore | 1 + 2 files changed, 20 insertions(+) diff --git a/SWIG/CHANGES.current b/SWIG/CHANGES.current index e9583e2f9..06bd2b400 100644 --- a/SWIG/CHANGES.current +++ b/SWIG/CHANGES.current @@ -1,6 +1,25 @@ Version 1.3.25 (In progress) ============================ +05/19/2005: wsfulton + [C# and -fvirtual option] Fix for the override key not being generated in the derived class when a + virtual method's return type was a typedef in either the base or derived class. Also ensures the + method is eliminated when using the -fvirtual option. For example, Derived.method now has the C# + override keyword generated: + + typedef int* IntegerPtr; + + struct Base { + virtual IntegerPtr method(); + }; + + struct Derived : Base { + int * method() const; + }; + + [C#] Fix for the override key being incorrectly generated for virtual methods when a base class + is ignored with %ignore. + 05/13/2005: wsfulton [Java] Fixes to remove "dereferencing type-punned pointer will break strict-aliasing rules" warnings in C wrappers when compiling C code with 'gcc -Wall -fstrict-aliasing'. Patch from diff --git a/SWIG/Examples/test-suite/csharp/.cvsignore b/SWIG/Examples/test-suite/csharp/.cvsignore index fad0c01cb..80ed981c7 100644 --- a/SWIG/Examples/test-suite/csharp/.cvsignore +++ b/SWIG/Examples/test-suite/csharp/.cvsignore @@ -44,6 +44,7 @@ cpp_namespace cpp_nodefault cpp_static cpp_typedef +csharp_attributes csharp_exceptions csharp_typemaps default_args