From 58d7062c0f98c0071eb0b03834c90e9a2791a3dc Mon Sep 17 00:00:00 2001 From: seleznevae Date: Thu, 29 Mar 2018 21:29:35 +0300 Subject: [PATCH] [C] Reverted msvc changes --- include/fort.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/include/fort.h b/include/fort.h index 1d16e64..948625c 100644 --- a/include/fort.h +++ b/include/fort.h @@ -58,16 +58,11 @@ SOFTWARE. #define FT_RESTRICT __restrict #endif /* if defined(FT_CLANG_COMPILER) */ #else - -#if defined(FT_MICROSOFT_COMPILER) -#define FT_RESTRICT restrict -#else #if __STDC_VERSION__ < 199901L #define FT_RESTRICT #else #define FT_RESTRICT restrict #endif /* __STDC_VERSION__ < 199901L */ -#endif /* if defined(FT_MICROSOFT_COMPILER) */ #endif /* if defined(__cplusplus) */