ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/OOPSE-3.0/src/selection/SelectionEvaluator.cpp
(Generate patch)

Comparing trunk/OOPSE-3.0/src/selection/SelectionEvaluator.cpp (file contents):
Revision 2097 by tim, Wed Mar 9 17:30:29 2005 UTC vs.
Revision 2099 by tim, Wed Mar 9 18:46:16 2005 UTC

# Line 403 | Line 403 | BitSet SelectionEvaluator::indexInstruction(const boos
403          if (index < 0 || index >= bs.size()) {
404              invalidIndex(index);
405          } else {
406 <            indexFinder.find(index);
406 >            bs = indexFinder.find(index);
407          }
408      } else if (value.type() == typeid(std::pair<int, int>)) {
409          std::pair<int, int> indexRange= boost::any_cast<std::pair<int, int> >(value);
# Line 411 | Line 411 | BitSet SelectionEvaluator::indexInstruction(const boos
411          if (indexRange.first < 0 || indexRange.second >= bs.size()) {
412              invalidIndexRange(indexRange);
413          }else {
414 <            indexFinder.find(indexRange.first, indexRange.second);
414 >            bs = indexFinder.find(indexRange.first, indexRange.second);
415          }
416      }
417  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines