[libpng15] Revised pngconf.h to use " __declspec(restrict)" if MSC_VER >= 1400,

as in libpng-1.5.4.
This commit is contained in:
Glenn Randers-Pehrson
2011-12-01 21:32:15 -06:00
parent 1be5c22e5c
commit c4fe32016c
3 changed files with 6 additions and 2 deletions

View File

@@ -366,10 +366,10 @@
# define PNG_USE_RESULT /* not supported */
# endif
# ifndef PNG_NORETURN
# define PNG_NORETURN __declspec(noreturn)
# define PNG_NORETURN __declspec(noreturn)
# endif
# ifndef PNG_ALLOCATED
# if defined(_MSC_VER) && (_MSC_VER >= 1300)
# if (_MSC_VER >= 1400)
# define PNG_ALLOCATED __declspec(restrict)
# endif
# endif