Skip to content

Commit

Permalink
Merge pull request InsightSoftwareConsortium#4958 from blowekamp/fix_…
Browse files Browse the repository at this point in the history
…tiff_link

COMP: itktiff: Suppress C99 inline only on MSVC from VS 2013 and below - For Release Branch
  • Loading branch information
thewtex authored Nov 21, 2024
2 parents ee6bc26 + 6025654 commit 49413c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/ThirdParty/TIFF/src/itktiff/tif_config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ the sizes can be different.*/
/* MSVC does not support C99 inline, so just make the inline keyword
disappear for C. */
#ifndef __cplusplus
# ifdef _MSC_VER
# if defined(_MSC_VER) && _MSC_VER < 1900
# define inline
# endif
#endif
Expand Down

0 comments on commit 49413c3

Please sign in to comment.