X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Ffloat%2Felem%2Fcl_F_div.cc;h=9364774f7d2e2bb3495ea1331e44e6cce121768c;hb=8b3d91dec77438c0fe679b10869ab29e6cdeba58;hp=74d031384160f9cbec0f3dc958c1ef331f215d67;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/float/elem/cl_F_div.cc b/src/float/elem/cl_F_div.cc index 74d0313..9364774 100644 --- a/src/float/elem/cl_F_div.cc +++ b/src/float/elem/cl_F_div.cc @@ -4,20 +4,24 @@ #include "cl_sysdep.h" // Specification. -#include "cl_float.h" +#include "cln/float.h" // Implementation. #include "cl_F.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_LF.h" +namespace cln { + ALL_cl_LF_OPERATIONS_SAME_PRECISION() const cl_F operator/ (const cl_F& x, const cl_F& y) #define div(a,b) a/b GEN_F_OP2(x,y, div, 1, 1, return) + +} // namespace cln