1453
It's not great (media.kbin.social)
submitted 2 years ago by [email protected] to c/[email protected]

I'm doing you a favor

you are viewing a single comment's thread
view the rest of the comments
[-] [email protected] 11 points 2 years ago

Steadily increasing unsigned integer on a long-running piece of infrastructure: bonjour

[-] [email protected] 3 points 2 years ago* (last edited 2 years ago)

Laughs in

struct LooooongCounter {
    long highPart;
    long lowPart;
};
[-] [email protected] 3 points 2 years ago
LooooongCounter operator++(const LooooongCounter& c) {
    if(c.lowPart == ULONG_MAX) {
        c.highPart++;
        c.lowPart = 0;
    }
    else c.lowPart++;
}
this post was submitted on 02 Aug 2023
1453 points (98.0% liked)

Programmer Humor

36950 readers
331 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS