As usual while waiting for the next release - don't forget to check the nightly builds in the forum.
bool Contains(int val) const { assert(val >= 0); if (val < 0) return false; return (val < size) ? bset[val] : valueAfter; }
Code bool Contains(int val) const { assert(val >= 0); if (val < 0) return false; return (val < size) ? bset[val] : valueAfter; }
Quote from: stahta01 on June 13, 2012, 12:33:04 amCode 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.