Returns true if the argument is a closing character.
| 48 | |
| 49 | // Returns true if the argument is a closing character. |
| 50 | bool IsClosing(char c) const { |
| 51 | return valid_closing_[static_cast<unsigned char>(c)]; |
| 52 | } |
| 53 | |
| 54 | private: |
| 55 | // Maps an opening character to its closing. If the entry contains 0, |
no outgoing calls
no test coverage detected