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