| 7410 | // Forward deprecated interface with '+' instead of '|' |
| 7411 | template<typename T> |
| 7412 | auto operator+=( T const &other ) -> Parser & { return operator|=( other ); } |
| 7413 | template<typename T> |
| 7414 | auto operator+( T const &other ) const -> Parser { return operator|( other ); } |
| 7415 |
nothing calls this directly
no outgoing calls
no test coverage detected