1
0
Fork 0

[F] Fixed build

This commit is contained in:
seleznevae 2018-03-09 11:20:01 +03:00
parent d8ea580a28
commit 1d8e03612b
1 changed files with 14 additions and 13 deletions

View File

@ -49,20 +49,21 @@ SOFTWARE.
/*
* Declare restrict
*/
#if defined(__cplusplus)
#if defined(FORT_CLANG_COMPILER)
#define FORT_RESTRICT __restrict__
#else
#define FORT_RESTRICT __restrict
#endif /* if defined(FORT_CLANG_COMPILER) */
#else
#if __STDC_VERSION__ < 199901L
#define FORT_RESTRICT restrict
#else
#define FORT_RESTRICT
#endif /* __STDC_VERSION__ < 199901L */
#endif /* if defined(__cplusplus) */
//#if defined(__cplusplus)
//#if defined(FORT_CLANG_COMPILER)
//#define FORT_RESTRICT __restrict__
//#else
//#define FORT_RESTRICT __restrict
//#endif /* if defined(FORT_CLANG_COMPILER) */
//#else
//#if __STDC_VERSION__ < 199901L
//#define FORT_RESTRICT restrict
//#else
//#define FORT_RESTRICT
//#endif /* __STDC_VERSION__ < 199901L */
//#endif /* if defined(__cplusplus) */
#define FORT_RESTRICT
/*