Commit dcc5f24569

Jonathan Marler <johnnymarler@gmail.com>
2017-09-15 16:44:47
Fixed softfloat header file for msvc (#482)
1 parent 766547d
Changed files (1)
deps
SoftFloat-3d-prebuilt
deps/SoftFloat-3d-prebuilt/platform.h
@@ -88,6 +88,10 @@
 #endif
 
 #define INLINE inline
+#if _MSC_VER
+#define THREAD_LOCAL __declspec(thread)
+#else
 #define THREAD_LOCAL __thread
+#endif
 
 #endif