j
k
j a
j l
From 4b14, lib/guide/guide.h:
#define min(x,y) (((x)<(y))?(x):(y)) #define max(x,y) (((x)>(y))?(x):(y))
It's illegal to define max and min in this way in C++. Modern gcc's fail to compile this. With C++ std::min and std::max can be used.
AGL
Retour au fil de discussion
Retour à la liste