| 8535 | }; |
| 8536 | |
| 8537 | inline auto isOptPrefix( char c ) -> bool { |
| 8538 | return c == '-' |
| 8539 | #ifdef CATCH_PLATFORM_WINDOWS |
| 8540 | || c == '/' |
| 8541 | #endif |
| 8542 | ; |
| 8543 | } |
| 8544 | |
| 8545 | // Abstracts iterators into args as a stream of tokens, with option arguments uniformly handled |
| 8546 | class TokenStream { |