| 10262 | }; |
| 10263 | |
| 10264 | inline auto isOptPrefix(char c) -> bool |
| 10265 | { |
| 10266 | return c == '-' |
| 10267 | #ifdef CATCH_PLATFORM_WINDOWS |
| 10268 | || c == '/' |
| 10269 | #endif |
| 10270 | ; |
| 10271 | } |
| 10272 | |
| 10273 | // Abstracts iterators into args as a stream of tokens, with option arguments uniformly handled |
| 10274 | class TokenStream { |