| 6960 | }; |
| 6961 | |
| 6962 | inline auto isOptPrefix( char c ) -> bool { |
| 6963 | return c == '-' |
| 6964 | #ifdef CATCH_PLATFORM_WINDOWS |
| 6965 | || c == '/' |
| 6966 | #endif |
| 6967 | ; |
| 6968 | } |
| 6969 | |
| 6970 | // Abstracts iterators into args as a stream of tokens, with option arguments uniformly handled |
| 6971 | class TokenStream { |