You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
274 B

#define SOME_MACRO TemplateClass<T>
int i;
#if defined(_MSC_VER)
#if _MSC_VER < 1300
#define __func__ "unknown function"
#else
#define __func__ __FUNCTION__
#endif /* _MSC_VER < 1300 */
#endif /* defined(_MSC_VER) */
#define bug_demo (1 > 2) ? (1 : 2)