2
0
mirror of https://github.com/boostorg/pfr.git synced 2026-01-19 04:22:13 +00:00

Reflect up to 200 fields by default in c++17 implementation via structured bindings (#181)

This commit is contained in:
Antony Polukhin
2024-09-13 19:15:10 +03:00
committed by GitHub
parent 73938e0936
commit e1a0832a0e
2 changed files with 6322 additions and 1 deletions

View File

@@ -139,7 +139,7 @@ class EmptyLinePrinter:
indexes = " a"
print(PROLOGUE)
funcs_count = 100 if len(sys.argv) == 1 else int(sys.argv[1])
funcs_count = 200 if len(sys.argv) == 1 else int(sys.argv[1])
max_args_on_a_line = len(ascii_letters)
for i in range(1, funcs_count):
if i % max_args_on_a_line == 0: