dlang-community / d2sqlite3

A small wrapper around SQLite for the D programming language
Boost Software License 1.0
75 stars 26 forks source link

fix UTF-8 handling in ByStatement.findEnd #43

Closed aG0aep6G closed 6 years ago

aG0aep6G commented 6 years ago

tail.countUntil(';') counted code points, but pos is used as a number of code units.

Prompted by https://forum.dlang.org/post/mailman.2321.1523383471.3374.digitalmars-d@puremagic.com

biozic commented 6 years ago

Thanks !