2
0
mirror of https://github.com/boostorg/parser.git synced 2026-02-23 16:02:08 +00:00

Document the change in semantics from the merge of PR #313.

This commit is contained in:
Zach Laine
2026-02-15 16:03:43 -06:00
parent 85320bd6d7
commit 293f5e1e3f

View File

@@ -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_]