aboutsummaryrefslogtreecommitdiff
path: root/MoonParser/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'MoonParser/parser.cpp')
-rw-r--r--MoonParser/parser.cpp4
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
274private: 274private:
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;