Fixed softfloat header file for msvc (#482)

This commit is contained in:
Jonathan Marler 2017-09-15 08:44:47 -06:00 committed by Andrew Kelley
parent 766547dbfe
commit dcc5f24569

View File

@ -88,6 +88,10 @@
#endif #endif
#define INLINE inline #define INLINE inline
#if _MSC_VER
#define THREAD_LOCAL __declspec(thread)
#else
#define THREAD_LOCAL __thread #define THREAD_LOCAL __thread
#endif
#endif #endif