More fixes to optiomal node search.

Support for replying to UTF-8 chat messages.
Minor refactoring.
This commit is contained in:
jeefo 2019-08-04 18:22:01 +03:00
commit a186f33ffb
18 changed files with 488 additions and 189 deletions

View file

@ -234,7 +234,7 @@ public:
return kEOF;
}
auto ch = m_data[m_pos];
m_pos++;
++m_pos;
return static_cast <char> (ch);
}