Changeset 876739f
- Timestamp:
- Jul 28, 2024, 8:39:12 AM (4 months ago)
- Branches:
- master
- Children:
- 1bb0170
- Parents:
- fcbb532
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/enum.cfa
rfcbb532 r876739f 25 25 E pred( E e ) { 26 26 E lower = lowerBound(); 27 if ( fromInstance( e) <= fromInstance(lower ) )27 if ( fromInstance( e ) <= fromInstance(lower ) ) 28 28 abort( "call to pred() exceeds enumeration lower bound of %d", fromInstance( lower ) ); 29 return pred_unsafe( e);29 return pred_unsafe( e ); 30 30 } 31 31
Note: See TracChangeset
for help on using the changeset viewer.