| 7252 | }; |
| 7253 | |
| 7254 | inline auto normaliseOpt( std::string const &optName ) -> std::string { |
| 7255 | #ifdef CATCH_PLATFORM_WINDOWS |
| 7256 | if( optName[0] == '/' ) |
| 7257 | return "-" + optName.substr( 1 ); |
| 7258 | else |
| 7259 | #endif |
| 7260 | return optName; |
| 7261 | } |
| 7262 | |
| 7263 | class Opt : public ParserRefImpl<Opt> { |
| 7264 | protected: |