| 923 | } |
| 924 | |
| 925 | void PrintWithRightPadding(string_view str, size_t width) |
| 926 | { |
| 927 | printInConsole(str); |
| 928 | if (str.size() >= width) |
| 929 | return; |
| 930 | printInConsole(std::string(width - str.size(), ' ')); |
| 931 | } |
| 932 | |
| 933 | void PrintHelpOption(string_view flags, string_view description) |
| 934 | { |
no test coverage detected