Changeset 19968
- Timestamp:
- 06/15/20 23:15:33 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/root2sql.cc
r19815 r19968 722 722 size_t count = 0; 723 723 724 const size_t num = max>0 && (max-first)<T->GetEntriesFast() ? (max-first) : T->GetEntriesFast();724 const size_t num = max>0 && first+max<T->GetEntriesFast() ? (first+max) : T->GetEntriesFast(); 725 725 for (size_t j=first; j<num; j++) 726 726 {
Note:
See TracChangeset
for help on using the changeset viewer.