From d34122e8d48b90fbeb2ca3b013e774179e95feb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 18 Mar 2024 00:02:11 +0100 Subject: [PATCH 1/2] Update quickbook language to 1.7 --- doc/move.qbk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/move.qbk b/doc/move.qbk index ff68498..74915fa 100644 --- a/doc/move.qbk +++ b/doc/move.qbk @@ -5,9 +5,9 @@ / file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) /] [library Boost.Move - [quickbook 1.5] + [quickbook 1.7] [authors [Gaztanaga, Ion]] - [copyright 2008-2014 Ion Gaztanaga] + [copyright 2008-2024 Ion Gaztanaga] [id move] [dirname move] [purpose Move semantics] From 08f16be939b78e91636b23fc5cb498da27618612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 18 Mar 2024 00:04:17 +0100 Subject: [PATCH 2/2] Fix syntax error detected in quickbook 1.7 --- doc/move.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/move.qbk b/doc/move.qbk index 74915fa..aba2aaf 100644 --- a/doc/move.qbk +++ b/doc/move.qbk @@ -463,7 +463,7 @@ provided with this library. With regular iterator classes, while (first != last) *result++ = *first++; -causes a range [first,last) to be copied into a range starting with result. The same code with +causes a range `[first,last)` to be copied into a range starting with result. The same code with result being a move insert iterator will move insert corresponding elements into the container. This device allows all of the copying algorithms in the library to work in the move insert mode instead of the regular overwrite mode. This library offers 3 move insert iterators and their