diff --git a/ion/src/shared/unicode/utf8_helper.cpp b/ion/src/shared/unicode/utf8_helper.cpp index d69016075..75c8712d5 100644 --- a/ion/src/shared/unicode/utf8_helper.cpp +++ b/ion/src/shared/unicode/utf8_helper.cpp @@ -191,6 +191,7 @@ const char * PerformAtCodePoints(const char * s, CodePoint c, CodePointAction ac if (*i == c) { actionCodePoint(i - s, contextPointer, contextInt1, contextInt2); } else { + // FIXME we are stopping at every char, not every code point -> it does not make any bug for now actionOtherCodePoint(i - s, contextPointer, contextInt1, contextInt2); } i++;