Rm obsolete defines for inline wiht MSVC

The "inline" keyword is supported since Visual Studio 2005 according to MSDN,
and we require Visual Studio 2010 or higher.
This commit is contained in:
Manuel Pégourié-Gonnard 2015-07-01 17:22:36 +02:00
parent 636741b176
commit 2505528be4
6 changed files with 0 additions and 24 deletions

View file

@ -42,13 +42,9 @@
#include "sha512.h"
#endif
#if defined(_MSC_VER) && !defined(inline)
#define inline _inline
#else
#if defined(__ARMCC_VERSION) && !defined(inline)
#define inline __inline
#endif /* __ARMCC_VERSION */
#endif /*_MSC_VER */
/* Determine minimum supported version */
#define MBEDTLS_SSL_MIN_MAJOR_VERSION MBEDTLS_SSL_MAJOR_VERSION_3