xinxinlx / openjpeg

Automatically exported from code.google.com/p/openjpeg
Other
0 stars 0 forks source link

visual studio build broken with recent commit #272

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
inline is used in the convert.c file. 
But inline can not be used in c files for MSVC.

Try this:

#ifdef _MSC_VER
#define STIN static __inline
#else
#define STIN static inline
#endif

STIN int clamp( const int value, const int prec, const int sgnd )

for example.

Original issue reported on code.google.com by boxe...@gmail.com on 4 Mar 2014 at 9:44

GoogleCodeExporter commented 9 years ago

Original comment by mathieu.malaterre on 7 Mar 2014 at 9:15

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r2605.

Original comment by mathieu.malaterre on 7 Mar 2014 at 9:15