| 6156 | public: |
| 6157 | template<typename LambdaT> |
| 6158 | explicit Opt( LambdaT const &ref ) : ParserRefImpl( std::make_shared<BoundFlagLambda<LambdaT>>( ref ) ) {} |
| 6159 | |
| 6160 | explicit Opt( bool &ref ) : ParserRefImpl( std::make_shared<BoundFlagRef>( ref ) ) {} |
| 6161 |
nothing calls this directly
no outgoing calls
no test coverage detected