From 47a08cb35bc3a568adb9ce979d25abdb27fd8628 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 29 Oct 2023 19:14:13 +0200 Subject: [PATCH] Update documentation --- doc/system/reference.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/system/reference.adoc b/doc/system/reference.adoc index f37b6a1..1d703ef 100644 --- a/doc/system/reference.adoc +++ b/doc/system/reference.adoc @@ -1529,6 +1529,7 @@ template T operator|( result&& r, F&& f ); template R operator|( result const& r, F&& f ); template R operator|( result&& r, F&& f ); +template R operator|( result const& r, F&& f ); template R operator|( result&& r, F&& f ); } // namespace system @@ -2578,6 +2579,7 @@ which isn't necessary here, but would be needed for more complex expressions. ``` template R operator|( result const& r, F&& f ); template R operator|( result&& r, F&& f ); +template R operator|( result const& r, F&& f ); template R operator|( result&& r, F&& f ); ``` [none]