| 85 | } |
| 86 | } |
| 87 | void operator--(DayTime &MainDayTime2) |
| 88 | { |
| 89 | MainDayTime2.minute--; |
| 90 | if (MainDayTime2.minute < 0) |
| 91 | { |
| 92 | MainDayTime2.minute = 59; |
| 93 | MainDayTime2.hour--; |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | // Class 'Dollar' for the program 2 |
| 98 | class Dollar |
nothing calls this directly
no outgoing calls
no test coverage detected