Changeset 0052ada for doc/theses/andrew_beach_MMath/code/cond-match.cpp
- Timestamp:
- Jul 5, 2021, 5:21:01 PM (2 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 8ee4475
- Parents:
- e49b6f5 (diff), 11ad42f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/andrew_beach_MMath/code/cond-match.cpp
re49b6f5 r0052ada 27 27 int main(int argc, char * argv[]) { 28 28 unsigned int times = 1; 29 unsigned int total_frames = 1;30 29 if (1 < argc) { 31 30 times = strtol(argv[1], nullptr, 10); 32 31 } 33 32 if (2 < argc) { 34 total_frames= strtol(argv[2], nullptr, 10);33 should_catch = strtol(argv[2], nullptr, 10); 35 34 } 36 35
Note: See TracChangeset
for help on using the changeset viewer.