MCPcopy Create free account
hub / github.com/EricPengShuai/Interview / operator--

Function operator--

base_code/overload.cpp:53–56  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51};
52
53Time operator--(Time &t) {
54 -- t.ss;
55 return t;
56}
57
58Time operator--(Time &t, int) {
59 t.ss --;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected