| 5958 | public: |
| 5959 | template <typename LambdaT> |
| 5960 | explicit Opt(LambdaT const &ref) : ParserRefImpl(std::make_shared<BoundFlagLambda<LambdaT>>(ref)) { |
| 5961 | } |
| 5962 | |
| 5963 | explicit Opt(bool &ref) : ParserRefImpl(std::make_shared<BoundFlagRef>(ref)) { |
| 5964 | } |
nothing calls this directly
no outgoing calls
no test coverage detected