mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
remove vflib from Jamfiles
remove const specifiers from return values in DataStructs add initial pass at query-query matching for Atoms and Bonds fix and test for sf.net issu 2738320 add Mol.AddRecursiveQuery() method to Mol
This commit is contained in:
@@ -104,13 +104,13 @@ ExplicitBitVect::ExplicitBitVect(const char *data,const unsigned int dataLen)
|
||||
return(ans);
|
||||
};
|
||||
|
||||
const unsigned int ExplicitBitVect::GetNumBits() const {
|
||||
unsigned int ExplicitBitVect::GetNumBits() const {
|
||||
return d_size;
|
||||
};
|
||||
const unsigned int ExplicitBitVect::GetNumOnBits() const {
|
||||
unsigned int ExplicitBitVect::GetNumOnBits() const {
|
||||
return d_numOnBits;
|
||||
};
|
||||
const unsigned int ExplicitBitVect::GetNumOffBits() const {
|
||||
unsigned int ExplicitBitVect::GetNumOffBits() const {
|
||||
return d_size - d_numOnBits;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user