| 39 | } |
| 40 | |
| 41 | void Finish() |
| 42 | { |
| 43 | if (m_currentCount > 0) |
| 44 | m_tokens.emplace_back(m_currentCount, m_currentS); |
| 45 | sort(m_tokens.begin(), m_tokens.end(), std::greater<pair<uint32_t, strings::UniString>>()); |
| 46 | } |
| 47 | |
| 48 | vector<pair<uint32_t, strings::UniString>> m_tokens; |
| 49 | strings::UniString m_currentS; |
no test coverage detected