diff options
Diffstat (limited to 'MoonParser/parser.cpp')
-rw-r--r-- | MoonParser/parser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MoonParser/parser.cpp b/MoonParser/parser.cpp index 5a7da73..6778368 100644 --- a/MoonParser/parser.cpp +++ b/MoonParser/parser.cpp | |||
@@ -273,11 +273,11 @@ public: | |||
273 | 273 | ||
274 | private: | 274 | private: |
275 | //string | 275 | //string |
276 | std::vector<int> m_string; | 276 | std::vector<char32_t> m_string; |
277 | 277 | ||
278 | //parse the string | 278 | //parse the string |
279 | bool _parse(_context &con) const { | 279 | bool _parse(_context &con) const { |
280 | for(std::vector<int>::const_iterator it = m_string.begin(), | 280 | for(std::vector<char32_t>::const_iterator it = m_string.begin(), |
281 | end = m_string.end();;) | 281 | end = m_string.end();;) |
282 | { | 282 | { |
283 | if (it == end) return true; | 283 | if (it == end) return true; |