| 8768 | }; |
| 8769 | |
| 8770 | inline auto isOptPrefix( char c ) -> bool { |
| 8771 | return c == '-' |
| 8772 | #ifdef CATCH_PLATFORM_WINDOWS |
| 8773 | || c == '/' |
| 8774 | #endif |
| 8775 | ; |
| 8776 | } |
| 8777 | |
| 8778 | // Abstracts iterators into args as a stream of tokens, with option arguments uniformly handled |
| 8779 | class TokenStream { |