Files
UnrealEngine/Engine/Source/ThirdParty/Blosc/c-blosc-1.21.0/blosc/blosc-comp-features.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

22 lines
725 B
C

/*********************************************************************
Blosc - Blocked Shuffling and Compression Library
Author: Francesc Alted <francesc@blosc.org>
See LICENSES/BLOSC.txt for details about copyright and rights to use.
**********************************************************************/
#ifndef BLOSC_COMP_FEATURES_H
#define BLOSC_COMP_FEATURES_H
/* Use inlined functions for supported systems */
#if defined(_MSC_VER) && !defined(__cplusplus) /* Visual Studio */
#define BLOSC_INLINE __inline /* Visual C is not C99, but supports some kind of inline */
#elif __STDC_VERSION__ >= 199901L
#define BLOSC_INLINE inline
#else
#define BLOSC_INLINE
#endif
#endif /* BLOSC_COMP_FEATURES_H */