| 5423 | }; |
| 5424 | |
| 5425 | inline auto isOptPrefix(char c) -> bool { |
| 5426 | return c == '-' |
| 5427 | #ifdef CATCH_PLATFORM_WINDOWS |
| 5428 | || c == '/' |
| 5429 | #endif |
| 5430 | ; |
| 5431 | } |
| 5432 | |
| 5433 | // Abstracts iterators into args as a stream of tokens, with option arguments uniformly handled |
| 5434 | class TokenStream { |