X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Ffloat%2Ftranscendental%2Fcl_F_eulerconst.cc;h=8650ed85879e097645692df57c04590803eb9a8e;hb=8b3d91dec77438c0fe679b10869ab29e6cdeba58;hp=d41d4270492d8b025e17ba822a08b27de7d91348;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/float/transcendental/cl_F_eulerconst.cc b/src/float/transcendental/cl_F_eulerconst.cc index d41d427..8650ed8 100644 --- a/src/float/transcendental/cl_F_eulerconst.cc +++ b/src/float/transcendental/cl_F_eulerconst.cc @@ -1,10 +1,10 @@ -// cl_eulerconst(). +// eulerconst(). // General includes. #include "cl_sysdep.h" // Specification. -#include "cl_float.h" +#include "cln/float.h" // Implementation. @@ -13,12 +13,16 @@ #include "cl_F_tran.h" #include "cl_LF.h" -const cl_F cl_eulerconst (const cl_F& y) +namespace cln { + +const cl_F eulerconst (const cl_F& y) { floattypecase(y , return cl_SF_eulerconst; , return cl_FF_eulerconst; , return cl_DF_eulerconst; - , return cl_eulerconst(TheLfloat(y)->len); + , return eulerconst(TheLfloat(y)->len); ); } + +} // namespace cln