| 408 | size_t m_max_pad{0}; |
| 409 | |
| 410 | void PushSection(const Section& s) |
| 411 | { |
| 412 | m_max_pad = std::max(m_max_pad, s.m_left.size()); |
| 413 | m_sections.push_back(s); |
| 414 | } |
| 415 | |
| 416 | /** |
| 417 | * Recursive helper to translate an RPCArg into sections |
no test coverage detected