X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Ffloat%2Ftranscendental%2Fcl_F_pi_f.cc;h=c4501406789c819250aeb6392d1fa74c24f8f366;hb=3af2cde18b3aabed4c808b0113daa81c2263b0bd;hp=c8444ec8e172a7e4c6510b975e8c231796ae5811;hpb=850abfde7f0d985ba01526c346bcd0d733562943;p=cln.git diff --git a/src/float/transcendental/cl_F_pi_f.cc b/src/float/transcendental/cl_F_pi_f.cc index c8444ec..c450140 100644 --- a/src/float/transcendental/cl_F_pi_f.cc +++ b/src/float/transcendental/cl_F_pi_f.cc @@ -1,7 +1,7 @@ // pi(). // General includes. -#include "cl_sysdep.h" +#include "base/cl_sysdep.h" // Specification. #include "cln/float.h" @@ -9,17 +9,17 @@ // Implementation. -#include "cl_F.h" -#include "cl_F_tran.h" +#include "float/cl_F.h" +#include "float/transcendental/cl_F_tran.h" namespace cln { const cl_F pi (float_format_t f) { - floatformatcase((uintL)f - , return cl_SF_pi; - , return cl_FF_pi; - , return cl_DF_pi; + floatformatcase((uintC)f + , return cl_SF_pi(); + , return cl_FF_pi(); + , return cl_DF_pi(); , return pi(len); ); }