From 63c883de3836e3014d82aa2a7c2586de592ff732 Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Thu, 20 Mar 2003 19:39:32 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4592 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- CHANGES.current | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGES.current b/CHANGES.current index 9c1425c63..c02942db6 100644 --- a/CHANGES.current +++ b/CHANGES.current @@ -1,6 +1,19 @@ Version 1.3.18 (In progress) ============================ +03/20/2003: beazley + Fixed a C++ scoping bug related to code like this: + + class Foo { + public: + int Foo::bar(); + }; + + Previously, SWIG just tossed out the Foo::bar() declaration. Now, + the declaration is wrapped provided that the prefix is exactly the + same as the current scope (including any enclosing namespaces). + Reported by Bruce Lowery. + 03/20/2003: beazley Incorporated [ 696516 ] Enabling exception processing for data member access. In some compilers, attribute access can generate exceptions. However,