| 8847 | }; |
| 8848 | |
| 8849 | inline auto isOptPrefix( char c ) -> bool { |
| 8850 | return c == '-' |
| 8851 | #ifdef CATCH_PLATFORM_WINDOWS |
| 8852 | || c == '/' |
| 8853 | #endif |
| 8854 | ; |
| 8855 | } |
| 8856 | |
| 8857 | // Abstracts iterators into args as a stream of tokens, with option arguments uniformly handled |
| 8858 | class TokenStream { |