| 388 | }; |
| 389 | |
| 390 | inline function_call::function_call(const function_record &f, handle p) : func(f), parent(p) { |
| 391 | args.reserve(f.nargs); |
| 392 | args_convert.reserve(f.nargs); |
| 393 | } |
| 394 | |
| 395 | /// Tag for a new-style `__init__` defined in `detail/init.h` |
| 396 | struct is_new_style_constructor {}; |