Closed szarnyasg closed 4 years ago
In ANSI C11, the convention using _Complex is to reverse the order, as in double _Complex
or float _Complex
, not _Complex double
Does it work in C++ to use double _Complex
and float _Complex
?
See for example, in the ANSI C11 spec:
Does it work in C++ to use
double _Complex
andfloat _Complex
?
Yes, I made & pushed the changes. It works fine with our C++ code so I think this PR is good to go.
Fixes #74. Suggested by the answer at https://stackoverflow.com/a/10540302/3580502.