Changeset 20010 for trunk


Ignore:
Timestamp:
12/21/20 16:03:20 (4 years ago)
Author:
tbretz
Message:
Compiler warning, overwriting existing name.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/Splitting.h

    r19802 r20010  
    8989        size_t index(const size_t &count) /*const*/
    9090        {
    91             size_t index = 0;
     91            size_t _index = 0;
    9292            if (!lut.empty())
    93                 index = lut.find(count % lut.size())->second;
     93                _index = lut.find(count % lut.size())->second;
    9494
    9595            if (quant.empty())
    96                 return index;
     96                return _index;
    9797
    9898            const double rndm = distribution(generator);
    99             for (; rndm>=quant[index]; index++)
    100                 if (index==quant.size())
    101                     return index;
     99            for (; rndm>=quant[_index]; _index++)
     100                if (_index==quant.size())
     101                    return _index;
    102102
    103             return index;
     103            return _index;
    104104        }
    105105
Note: See TracChangeset for help on using the changeset viewer.