bool Contains(int val) const {
assert(val >= 0);
if (val < 0) return false;
return (val < size) ? bset[val] : valueAfter;
}
IIRC this was a bug in scintilla, but I cannot upgrade to a more recent one as this would break bookmarks for the moment.Codebool Contains(int val) const {
assert(val >= 0);
if (val < 0) return false;
return (val < size) ? bset[val] : valueAfter;
}
Hope that it will be solved asap , because this bug will cause cb crash . the files which are changed but not saved will lose the changes.IIRC this was a bug in scintilla, but I cannot upgrade to a more recent one as this would break bookmarks for the moment.Codebool Contains(int val) const {
assert(val >= 0);
if (val < 0) return false;
return (val < size) ? bset[val] : valueAfter;
}