This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: [PATCH] Some uses of M_PI in libstdc++ testsuite
Paolo Carlini wrote:
> Alternately, maybe even more consistent with the rest of the testsuite,
> let's avoid macros completely and have just, right before the current
> uses of M_PI:
>
> const double __pi = 3.1415926535897932384626433832795029L;
>
> or
>
> const long double __pi = 3.1415926535897932384626433832795029L;
>
Being testcases, pi, instead of __pi, is ok, of course, sorry.
Paolo.