X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Ffloat%2Felem%2Fcl_F_RA_div.cc;h=aa881caa1878dd4ad9f8a8619931013493016735;hb=850abfde7f0d985ba01526c346bcd0d733562943;hp=8ffa4e9efb94dff86a271033327ad26fb576d059;hpb=e0b64ba4f92bb0323e5b241b465d17389ceff2d9;p=cln.git diff --git a/src/float/elem/cl_F_RA_div.cc b/src/float/elem/cl_F_RA_div.cc index 8ffa4e9..aa881ca 100644 --- a/src/float/elem/cl_F_RA_div.cc +++ b/src/float/elem/cl_F_RA_div.cc @@ -4,22 +4,24 @@ #include "cl_sysdep.h" // Specification. -#include "cl_float.h" +#include "cln/float.h" // Implementation. #include "cl_RA.h" -#include "cl_sfloat.h" -#include "cl_ffloat.h" -#include "cl_dfloat.h" -#include "cl_lfloat.h" +#include "cln/sfloat.h" +#include "cln/ffloat.h" +#include "cln/dfloat.h" +#include "cln/lfloat.h" #include "cl_F.h" #include "cl_SF.h" #include "cl_FF.h" #include "cl_DF.h" #include "cl_LF.h" +namespace cln { + const cl_F operator/ (const cl_F& x, const cl_RA& y) { floatcase(x @@ -45,3 +47,5 @@ const cl_F operator/ (const cl_F& x, const cl_RA& y) return cl_LF_RA_div(x,y); ); } + +} // namespace cln