[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

@ -120,6 +120,8 @@ Version 1.5.7rc01 [December 1, 2011]
Version 1.5.7rc02 [December 2, 2011]
Revised project files and contrib/pngvalid/pngvalid.c to account for
the relocation of pngvalid into contrib/libtests.
Revised pngconf.h to use " __declspec(restrict)" only when MSC_VER >= 1400,
as in libpng-1.5.4.
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
(subscription required; visit

View File

@ -3765,6 +3765,8 @@ Version 1.5.7rc01 [December 1, 2011]
Version 1.5.7rc02 [December 2, 2011]
Revised project files and contrib/pngvalid/pngvalid.c to account for
the relocation of pngvalid into contrib/libtests.
Revised pngconf.h to use " __declspec(restrict)" only when MSC_VER >= 1400,
as in libpng-1.5.4.
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

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