From 640399a4c200d9c0fea76bc202e47691fc452fa0 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@4763 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/CHANGES.current | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/SWIG/CHANGES.current b/SWIG/CHANGES.current index f5e757a1c..4feb6441f 100644 --- a/SWIG/CHANGES.current +++ b/SWIG/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.