From 1a58ea99eebe390da58e60e61c333e060364af9e Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Sun, 3 Mar 2019 21:18:26 -0500 Subject: clean up definition, add some linebreaks to improve readability --- src/complex/_Complex_I.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/complex/_Complex_I.c b/src/complex/_Complex_I.c index a250d031..beded4ab 100644 --- a/src/complex/_Complex_I.c +++ b/src/complex/_Complex_I.c @@ -1,7 +1,10 @@ #include #define _Complex_I \ - (((union { _Complex float __c; float __f[2]; }){.__f = {0., 1.} }).__c) + (((union { \ + float _Complex __c; \ + float __f[2]; \ + }){ .__f = { 0.0, 1.0 } }).__c) /* -- cgit v1.2.1