From 3bc754da10c5cac64f237ed890ade983c3c34f3d Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sat, 30 Jul 2022 17:42:26 +0100 Subject: [PATCH] html corrections --- Doc/Manual/CPlusPlus20.html | 7 +++++++ Doc/Manual/Contents.html | 4 ++++ Doc/Manual/Library.html | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Doc/Manual/CPlusPlus20.html b/Doc/Manual/CPlusPlus20.html index e92ca3a76..a289d776f 100644 --- a/Doc/Manual/CPlusPlus20.html +++ b/Doc/Manual/CPlusPlus20.html @@ -13,6 +13,10 @@ @@ -34,8 +38,10 @@ Work has only just begun on adding C++20 support.

10.2 Core language changes

+

10.2.1 Spaceship operator

+

SWIG supports the spaceship operator <=> in constant expressions. To simplify handling of the return value type, it is currently @@ -52,6 +58,7 @@ in any of the target languages.

10.2.2 Lambda templates

+

SWIG should parse lambda templates, but like diff --git a/Doc/Manual/Contents.html b/Doc/Manual/Contents.html index 39d83bd14..3d8494184 100644 --- a/Doc/Manual/Contents.html +++ b/Doc/Manual/Contents.html @@ -386,6 +386,10 @@

diff --git a/Doc/Manual/Library.html b/Doc/Manual/Library.html index 7dc649c16..f308c31f1 100644 --- a/Doc/Manual/Library.html +++ b/Doc/Manual/Library.html @@ -2127,7 +2127,7 @@ Consider expanding the example above with a function that takes a std::uniqu
-void take(std::unique_ptr);
+void take(std::unique_ptr<Klass>);