From 293f5e1e3f491f9219e69269f464da6f2ab9ff94 Mon Sep 17 00:00:00 2001 From: Zach Laine Date: Sun, 15 Feb 2026 16:03:43 -0600 Subject: [PATCH] Document the change in semantics from the merge of PR #313. --- doc/tutorial.qbk | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/tutorial.qbk b/doc/tutorial.qbk index efcf383b..1d24510c 100644 --- a/doc/tutorial.qbk +++ b/doc/tutorial.qbk @@ -1514,9 +1514,10 @@ attribute, simply returns `bool`; this indicates the success or failure of the parse.] [warning _Parser_ assumes that all attributes are semi-regular (see -`std::semiregular`). Within the _Parser_ code, attributes are assigned, -moved, copy, and default constructed. There is no support for move-only or -non-default-constructible types.] +`std::semiregular`). Move-only types that are nearly `std::semiregular`, +other than their copy operations, are also supported. Within the _Parser_ +code, attributes are move assigned, moved, and default constructed. There is +no support for non-default-constructible types.] [heading The attribute type trait, _attr_]