From 2f1d1f1ec538c4fa9b62358cf0d3dba5e646a572 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 2 Nov 2015 21:44:57 -0500 Subject: fix mismatched parens in CMPLX def for annex-g-conforming compilers this conditional path was never tested because there are no compilers that conform to annex g (none with _Imaginary_I). --- include/complex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/complex.h b/include/complex.h index 4d21728e..008b3c7e 100644 --- a/include/complex.h +++ b/include/complex.h @@ -116,7 +116,7 @@ long double creall(long double complex); #if __STDC_VERSION__ >= 201112L #if defined(_Imaginary_I) -#define __CMPLX(x, y, t) ((t)(x) + _Imaginary_I*(t)(y))) +#define __CMPLX(x, y, t) ((t)(x) + _Imaginary_I*(t)(y)) #elif defined(__clang__) #define __CMPLX(x, y, t) (+(_Complex t){ (t)(x), (t)(y) }) #else -- cgit v1.2.1