\brief Delete the bytecode. \throw nothrow The name of this function is a violation of my own coding guidelines but this way it's more in line with the STL functions thus more intuitive. */
| 542 | intuitive. |
| 543 | */ |
| 544 | void ParserByteCode::clear() |
| 545 | { |
| 546 | m_vRPN.clear(); |
| 547 | m_iStackPos = 0; |
| 548 | m_iMaxStackSize = 0; |
| 549 | } |
| 550 | |
| 551 | |
| 552 | /** \brief Dump bytecode (for debugging only!). */ |
no outgoing calls