| 8854 | }; |
| 8855 | |
| 8856 | inline auto isOptPrefix( char c ) -> bool { |
| 8857 | return c == '-' |
| 8858 | #ifdef CATCH_PLATFORM_WINDOWS |
| 8859 | || c == '/' |
| 8860 | #endif |
| 8861 | ; |
| 8862 | } |
| 8863 | |
| 8864 | // Abstracts iterators into args as a stream of tokens, with option arguments uniformly handled |
| 8865 | class TokenStream { |