diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/mupdf/fitz/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mupdf/fitz/system.h b/include/mupdf/fitz/system.h index 136246a7..c480bd7c 100644 --- a/include/mupdf/fitz/system.h +++ b/include/mupdf/fitz/system.h @@ -159,7 +159,7 @@ void fz_free_argv(int argc, char **argv); /* restrict is standard in C99, but not in all C++ compilers. */ #if __STDC_VERSION__ == 199901L /* C99 */ -#elif _MSC_VER >= 1500 /* MSVC 9 or newer */ +#elif _MSC_VER >= 1600 /* MSVC 10 or newer */ #define restrict __restrict #elif __GNUC__ >= 3 /* GCC 3 or newer */ #define restrict __restrict |