--------------------------------------------------------------------------- \brief Virtual function that defines the characters allowed in operator definitions. \sa #ValidNameChars, #ValidPrefixOprtChars */
| 503 | \sa #ValidNameChars, #ValidPrefixOprtChars |
| 504 | */ |
| 505 | const char_type* ParserBase::ValidOprtChars() const |
| 506 | { |
| 507 | MUP_ASSERT(m_sOprtChars.size()); |
| 508 | return m_sOprtChars.c_str(); |
| 509 | } |
| 510 | |
| 511 | //--------------------------------------------------------------------------- |
| 512 | /** \brief Virtual function that defines the characters allowed in infix operator definitions. |
no test coverage detected