Exclude VS2005 from using variadic macros

- due to issues raised in https://groups.google.com/forum/?fromgroups=#!topic/catch-forum/VGfNtNXjHXQ
This commit is contained in:
Phil Nash 2013-04-09 08:19:04 +01:00
parent 1ece38ed20
commit 1c03b4a363
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
#endif
// Use variadic macros if the compiler supports them
#if ( defined _MSC_VER && _MSC_VER >= 1400 && !defined __EDGE__) || \
#if ( defined _MSC_VER && _MSC_VER > 1400 && !defined __EDGE__) || \
( defined __WAVE__ && __WAVE_HAS_VARIADICS ) || \
( defined __GNUC__ && __GNUC__ >= 3 ) || \
( !defined __cplusplus && __STDC_VERSION__ >= 199901L || __cplusplus >= 201103L )