Cancel the effect of the last yyGet() or yySkip(). Note that the echo mode should not change between calls to yyGet / yySkip and yyUnget. The caller is responsible for ensuring that. */
| 1869 | and yyUnget. The caller is responsible for ensuring that. |
| 1870 | */ |
| 1871 | void yyUnget() |
| 1872 | { |
| 1873 | m_ptr--; |
| 1874 | if (m_echo) |
| 1875 | m_cpp_ptr--; |
| 1876 | } |
| 1877 | |
| 1878 | /** |
| 1879 | Accept a character, by advancing the input stream. |
no outgoing calls
no test coverage detected