From 1bc3b63b1142e51e7d633f9e8de4e490f5022d1c Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sat, 5 Nov 2022 10:18:02 +0000 Subject: [PATCH] Correct ordering in CHANGES.current file --- CHANGES.current | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/CHANGES.current b/CHANGES.current index 500ab4044..f1e26932f 100644 --- a/CHANGES.current +++ b/CHANGES.current @@ -7,24 +7,11 @@ the issue number to the end of the URL: https://github.com/swig/swig/issues/ Version 4.2.0 (in progress) =========================== -2022-10-26: wsfulton - [R] #2386 Fix memory leak in R shared_ptr wrappers. - Fix leak when a cast up a class inheritance chain is required. +2022-11-02: wsfulton + #2418 Fix infinite loop handling non-type template parameters. -2022-10-26: wsfulton - [R] Improve R wrapper error message when calling overloaded methods - when incorrect types passed are passed to the overloaded methods. - - Old unhelpful error message: - Error in f(...) : could not find function "f" - - Example of new improved error message: - Error in use_count(k) : - cannot find overloaded function for use_count with argtypes (NULL) - -2022-10-27: wsfulton - [R] Allow NULL to be used in overloaded functions taking shared_ptr. - Also fixes special variable $argtype expansion in rtypecheck typemaps. + Fixes infinite loop due to () brackets in a non-type template + parameter containing an expression. 2022-10-28: wsfulton [R] R rtypecheck typemaps @@ -51,8 +38,21 @@ Version 4.2.0 (in progress) the warning will disappear. This is important to do as swig-4.2 will not be able to provide this helpful warning. -2022-11-02: wsfulton - #2418 Fix infinite loop handling non-type template parameters. +2022-10-27: wsfulton + [R] Allow NULL to be used in overloaded functions taking shared_ptr. + Also fixes special variable $argtype expansion in rtypecheck typemaps. - Fixes infinite loop due to () brackets in a non-type template - parameter containing an expression. +2022-10-26: wsfulton + [R] Improve R wrapper error message when calling overloaded methods + when incorrect types passed are passed to the overloaded methods. + + Old unhelpful error message: + Error in f(...) : could not find function "f" + + Example of new improved error message: + Error in use_count(k) : + cannot find overloaded function for use_count with argtypes (NULL) + +2022-10-26: wsfulton + [R] #2386 Fix memory leak in R shared_ptr wrappers. + Fix leak when a cast up a class inheritance chain is required.