Commit e4e966c7 authored by Christopher Moore's avatar Christopher Moore Committed by Evan Nemerson

common: fix SIMDE_FLOAT64_C macro when SIMDE_FLOAT64_TYPE is defined

parent 7ba5b03f
......@@ -496,7 +496,7 @@ typedef SIMDE_FLOAT32_TYPE simde_float32;
# define SIMDE_FLOAT64_TYPE double
# define SIMDE_FLOAT64_C(value) value
#else
# define SIMDE_FLOAT32_C(value) ((SIMDE_FLOAT64_TYPE) value)
# define SIMDE_FLOAT64_C(value) ((SIMDE_FLOAT64_TYPE) value)
#endif
typedef SIMDE_FLOAT64_TYPE simde_float64;
......
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