| 434 | size_t m_max_pad{0}; |
| 435 | |
| 436 | void PushSection(const Section& s) |
| 437 | { |
| 438 | m_max_pad = std::max(m_max_pad, s.m_left.size()); |
| 439 | m_sections.push_back(s); |
| 440 | } |
| 441 | |
| 442 | /** |
| 443 | * Recursive helper to translate an RPCArg into sections |
no test coverage detected