| 7123 | |
| 7124 | template<typename DerivedT> |
| 7125 | class ComposableParserImpl : public ParserBase { |
| 7126 | public: |
| 7127 | template<typename T> |
| 7128 | auto operator|( T const &other ) const -> Parser; |
| 7129 | |
| 7130 | template<typename T> |
| 7131 | auto operator+( T const &other ) const -> Parser; |
| 7132 | }; |
| 7133 | |
| 7134 | // Common code and state for Args and Opts |
| 7135 | template<typename DerivedT> |
nothing calls this directly
no outgoing calls
no test coverage detected