Changeset 8e658241
- Timestamp:
 - Dec 2, 2021, 5:28:36 PM (4 years ago)
 - Branches:
 - ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
 - Children:
 - db87a35
 - Parents:
 - 58b2638
 - Files:
 - 
      
- 2 added
 - 2 edited
 
- 
          
  libcfa/src/algorithms/range_iterator.cfa (modified) (1 diff)
 - 
          
  libcfa/src/algorithms/range_iterator.hfa (modified) (1 diff)
 - 
          
  tests/algorithms/.expect/range_test.txt (added)
 - 
          
  tests/algorithms/range_test.cfa (added)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
libcfa/src/algorithms/range_iterator.cfa
r58b2638 r8e658241 59 59 if(this.text[0] == '\0') break; 60 60 } 61 this.com = -1; 61 62 }  - 
      
libcfa/src/algorithms/range_iterator.hfa
r58b2638 r8e658241 25 25 } 26 26 27 static inline bool moveNext(RangeIter & this) { resume(this); return this.com > 0; }27 static inline bool moveNext(RangeIter & this) { resume(this); return this.com >= 0; }  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.