Fixes github #7533 (#7539)

* Fixes #7533

Fixes problem with SparseIntVect and SparseBitVect where the intention is to
be able to store all possible values of the index type: in these cases
you could not store (or access) the final element.

* increase the verbosity of the DataStructs tests
so that we can see what's going on
This commit is contained in:
Greg Landrum
2024-06-20 09:27:27 +02:00
committed by GitHub
parent 3a8199e4ca
commit d3061b03ef
7 changed files with 72 additions and 20 deletions

View File

@@ -1,6 +1,5 @@
// $Id$
//
// Copyright (C) 2001-2014 Greg Landrum and Rational Discovery LLC
// Copyright (C) 2001-2024 Greg Landrum and other RDKit contributors
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
@@ -1453,6 +1452,7 @@ void test17Github3994() {
int main() {
RDLog::InitLogs();
boost::logging::enable_logs("rdApp.info");
try {
throw IndexErrorException(3);
} catch (IndexErrorException &) {