MinGW does not need MSVC hack.

Both MinGW and MSVC provide _WIN32 macro.
parent c6c632cf
...@@ -50,7 +50,7 @@ cmath_get_complex(mrb_state *mrb, mrb_value c, mrb_float *r, mrb_float *i) ...@@ -50,7 +50,7 @@ cmath_get_complex(mrb_state *mrb, mrb_value c, mrb_float *r, mrb_float *i)
#endif #endif
#define F(x) x #define F(x) x
#ifdef _WIN32 #if defined(_WIN32) && !defined(__MINGW32__)
#ifdef MRB_USE_FLOAT32 #ifdef MRB_USE_FLOAT32
typedef _Fcomplex mrb_complex; typedef _Fcomplex mrb_complex;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment