-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
Description
The BitSet::set() method declared here
pvDataCPP/src/misc/pv/bitSet.h
Line 102 in b3a1077
| BitSet& set(uint32 bitIndex); |
takes a 32 bit argument but is usually called with
PVField::getFieldOffset() as an argument which returns size_t.Line 181 in b3a1077
| std::size_t getFieldOffset() const; |
Would it be safe to change the BitSet::set() method (and everything else related in class BitSet) to have a size_t argument instead?