| 9294 | public: |
| 9295 | template<typename LambdaT> |
| 9296 | explicit Opt( LambdaT const &ref ) : ParserRefImpl( std::make_shared<BoundFlagLambda<LambdaT>>( ref ) ) {} |
| 9297 | |
| 9298 | explicit Opt( bool &ref ) : ParserRefImpl( std::make_shared<BoundFlagRef>( ref ) ) {} |
| 9299 |
nothing calls this directly
no outgoing calls
no test coverage detected