MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / operator--

Function operator--

Lab_13/main1.cpp:87–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

85 }
86}
87void 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
98class Dollar

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected