From 86cfa03dde4c8d3a5ca18c5b85defcaee2f7f9b1 Mon Sep 17 00:00:00 2001 From: Zach Laine Date: Sun, 7 Jan 2024 01:11:20 -0600 Subject: [PATCH] Replace eplxicit max aggregate size of 50 with reference to BOOST_PARSER_MAX_AGGREGATE_SIZE. Partially addresses #51. --- doc/tutorial.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial.qbk b/doc/tutorial.qbk index 4e99fa47..0ab8a7e3 100644 --- a/doc/tutorial.qbk +++ b/doc/tutorial.qbk @@ -581,7 +581,7 @@ attribute type is a tuple, you can also pass a tuple as an out-param to [important This automatic use of `struct`s as if they were tuples depends on a bit of metaprogramming. Due to compiler limits, the metaprogram that detects the number of data members of a `struct` is limited to a maximum number of -members. Fortunately, that limit is pretty high _emdash_ 50 members.] +members. Fortunately, that limit is configurable; see _AGGR_SIZE_.] [endsect]