From ffbde7a13206a592dc26f3e9e36ce35289e7baee Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sat, 30 Jul 2022 23:21:21 +0100 Subject: Fixes for deprecated std::basic_string::reserve() --- Lib/std/std_basic_string.i | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'Lib/std') diff --git a/Lib/std/std_basic_string.i b/Lib/std/std_basic_string.i index fb7afc1e6..e95cb4765 100644 --- a/Lib/std/std_basic_string.i +++ b/Lib/std/std_basic_string.i @@ -55,7 +55,16 @@ namespace std { size_type capacity() const; - void reserve(size_type __res_arg = 0); + void reserve(size_type __res_arg); + %extend { + void shrink_to_fit() { + %#if __cplusplus >= 202002L + self->shrink_to_fit(); + %#else + self->reserve(); + %#endif + } + } // Modifiers: -- cgit v1.2.1