Changeset 11482
- Timestamp:
- 07/20/11 08:04:13 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Converter.cc
r11479 r11482 775 775 const string n = what[3]; // counter 776 776 777 const int cnt = stoi(n);777 const int cnt = n.empty() ? 0 : stoi(n); 778 778 779 779 // if the :N part was not given assume 1
Note:
See TracChangeset
for help on using the changeset viewer.