authorgravatar for johnnymarler@gmail.comJonathan Marler <johnnymarler@gmail.com> 2017-09-15 08:44:47-06:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2017-09-15 10:44:47-04:00
logdcc5f245693fca972890107ae08ce30cc7463bdb
tree16356407dae7d109dd7c5876c70794b12683cf74
parent766547dbfeffcc05ed41423ee84a546b1dd07fb7

Fixed softfloat header file for msvc (#482)


1 files changed, 4 insertions(+), 0 deletions(-)

deps/SoftFloat-3d-prebuilt/platform.h+4
......@@ -88,6 +88,10 @@
8888#endif
8989
9090#define INLINE inline
91#if _MSC_VER
92#define THREAD_LOCAL __declspec(thread)
93#else
9194#define THREAD_LOCAL __thread
95#endif
9296
9397#endif