X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Freal%2Felem%2Fcl_R_minus.cc;fp=src%2Freal%2Felem%2Fcl_R_minus.cc;h=3e89c6fe230e8ff00ba23d75c33144aceb2630fc;hb=850abfde7f0d985ba01526c346bcd0d733562943;hp=ee2b105f0225b140476eea25ed63c4eee70333ab;hpb=e0b64ba4f92bb0323e5b241b465d17389ceff2d9;p=cln.git diff --git a/src/real/elem/cl_R_minus.cc b/src/real/elem/cl_R_minus.cc index ee2b105..3e89c6f 100644 --- a/src/real/elem/cl_R_minus.cc +++ b/src/real/elem/cl_R_minus.cc @@ -4,14 +4,16 @@ #include "cl_sysdep.h" // Specification. -#include "cl_real.h" +#include "cln/real.h" // Implementation. #include "cl_R.h" -#include "cl_rational.h" -#include "cl_float.h" +#include "cln/rational.h" +#include "cln/float.h" + +namespace cln { const cl_R operator- (const cl_R& x, const cl_R& y) { @@ -21,3 +23,5 @@ const cl_R operator- (const cl_R& x, const cl_R& y) #define minus(a,b) a-b GEN_R_OP2_2(x,y, minus, return) } + +} // namespace cln