| 6299 | // Forward deprecated interface with '+' instead of '|' |
| 6300 | template<typename T> |
| 6301 | auto operator+=( T const &other ) -> Parser & { return operator|=( other ); } |
| 6302 | template<typename T> |
| 6303 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 6304 |
nothing calls this directly
no outgoing calls
no test coverage detected