This is a careful, mechanical renaming.
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Here's one of many examples from Newlib's <math.h> that motivated this:
#define isgreater(x,y) (__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); !isunordered(__x,__y) && (__x > __y);}))
Comment Actions
I'll take a look at this tonight. If all it does is rename stuff It should be a very easy review.
Comment Actions
For consistency, I agree, I think s/__[ez]/_lcpp_\1/ is appropriate. Didn't see them before.
Take it or leave it but maybe we should change __e as well.