@ljs is this that min()/max()/whatever thing expanded?
@ljs
"*You* debug it" -- "No, *you*"
@ljs For a second I thought I was looking at a C++ error message. Must be because of all the < characters making it look like a deeply nested template expansion.
@ljs @cesarb
Since this is a preprocessor issue -- wait, I've mentioned this before, haven't I? Well, that's ok, it's pretty remarkable:
I once did development on a system with a sucky port/implementation of stdio. IO was disappointingly slow, but there's only so much you can slow down that sort of thing, right?
So I was astonished at one point to discover that the preprocessor (a port of the original Bell Labs preprocessor) was literally faster than "cat file.c"(it didn't use stdio)
Investigation revealed that the author, John Reiser, had used every trick in the book to make cpp as fast as possible. I talked to the author some years later. He was embarassed more than proud.
It was impressive, though. Blindingly fast.