LooooongCounter operator++(const LooooongCounter& c) {
if(c.lowPart == ULONG_MAX) {
c.highPart++;
c.lowPart = 0;
}
else c.lowPart++;
}
LooooongCounter operator++(const LooooongCounter& c) {
if(c.lowPart == ULONG_MAX) {
c.highPart++;
c.lowPart = 0;
}
else c.lowPart++;
}
Yeah, but there’s software that sucks less