mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
clear up a bunch of windows warnings (#1086)
This commit is contained in:
committed by
Brian Kelley
parent
bcb2fb23ff
commit
7fa3cae4cd
@@ -71,8 +71,8 @@ class SparseBitVect : public BitVect {
|
||||
bool getBit(const IntVectIter which) const;
|
||||
bool getBit(const IntSetIter which) const;
|
||||
|
||||
unsigned int getNumOnBits() const { return dp_bits->size(); };
|
||||
unsigned int getNumOffBits() const { return d_size - dp_bits->size(); };
|
||||
unsigned int getNumOnBits() const { return static_cast<unsigned int>(dp_bits->size()); };
|
||||
unsigned int getNumOffBits() const { return d_size - static_cast<unsigned int>(dp_bits->size()); };
|
||||
|
||||
std::string toString() const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user