nsecrecords.cc:79:12: warning: declaration of ‘count’ shadows a member of 'this' [-Wshadow]
nsecrecords.cc:141:12: warning: declaration of ‘count’ shadows a member of 'this' [-Wshadow]
{
NSECBitmapGenerator nbg(pw);
if (d_bitset) {
- size_t count = d_bitset->count();
size_t found = 0;
- for(size_t idx = 0; idx < nbTypes && found < count; ++idx){
+ size_t l_count = d_bitset->count();
+ for(size_t idx = 0; idx < nbTypes && found < l_count; ++idx){
if (!d_bitset->test(idx)) {
continue;
}
string ret;
if (d_bitset) {
- size_t count = d_bitset->count();
size_t found = 0;
- for(size_t idx = 0; idx < nbTypes && found < count; ++idx) {
+ size_t l_count = d_bitset->count();
+ for(size_t idx = 0; idx < nbTypes && found < l_count; ++idx) {
if (!d_bitset->test(idx)) {
continue;
}