From 473790a6ce9d188a58404ecc7c2cfbafd2d852ba Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Thu, 1 May 2003 19:23:31 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4763 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- CHANGES.current | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/CHANGES.current b/CHANGES.current index f5e757a1c..4feb6441f 100644 --- a/CHANGES.current +++ b/CHANGES.current @@ -1,5 +1,24 @@ Version 1.3.20 (In progress) ============================ +05/01/2003: beazley + Fixed problem with return by value, const, and private constructors. + For example: + + class B { + private: + B(); + public: + B(const B&); + }; + + class A { + ... + const B returnB() const; + ... + }; + + Problem and patch suggestion reported by Bill Hoffman. + 04/29/2003: cheetah (William Fulton) Build changes: - Single autoconf invocation - autoconf in the Tools directory has gone.