The functions for detecting character types (like is_alpha()) cannot handle empty strings. Check and resolve this for all is_CHARTYPE() functions.
The issue in these cases in strings/stringfunctions.hpp is always the change to the new StringVector class, which is default constructed and therefore contains no element. If the argument to the string function is only a string with zero characters, then no further element is constructed in the StringVector class instance. Can probably be resolved by checking fpr StringVector::empty() and using StringVector::push_back(false).
Detected problems were resolved within [r1326].
Commit: [r1265]
Commit: [r1326]
Anonymous
Diff:
Diff:
Diff:
Related
Commit: [r1265]
Diff:
Related
Commit: [r1326]