| 7267 | public: |
| 7268 | template<typename LambdaT> |
| 7269 | explicit Opt( LambdaT const &ref ) : ParserRefImpl( std::make_shared<BoundFlagLambda<LambdaT>>( ref ) ) {} |
| 7270 | |
| 7271 | explicit Opt( bool &ref ) : ParserRefImpl( std::make_shared<BoundFlagRef>( ref ) ) {} |
| 7272 |
nothing calls this directly
no outgoing calls
no test coverage detected