ROSE  0.9.6a
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
inputCode_collectComments.h
Go to the documentation of this file.
1 /* comment from inputCode_collectComments.h */
2 
3 // common MAX macro definition
4 #define max(a,b) ((a) > (b) ? (a) : (b))
5 
6 // More efficent version using g++ statement expression extension
7 #define maxint(a,b) ({int _a = (a), _b = (b); _a > _b ? _a : _b; })
8