X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;ds=sidebyside;f=src%2Ffloat%2Fffloat%2Felem%2Fcl_FF_plusp.cc;h=46d6a4972e8162095d292cdb4c11b23d3adb9536;hb=5370ad8054201cf23d4f94a52f4d3f7f9f3cd511;hp=93aa87bbeb7a9cb558f7d67e55197f7917db5119;hpb=c486b78a1a0613f07a10816d6f6ca9e485bc8290;p=cln.git diff --git a/src/float/ffloat/elem/cl_FF_plusp.cc b/src/float/ffloat/elem/cl_FF_plusp.cc index 93aa87b..46d6a49 100644 --- a/src/float/ffloat/elem/cl_FF_plusp.cc +++ b/src/float/ffloat/elem/cl_FF_plusp.cc @@ -19,14 +19,14 @@ namespace cln { MAYBE_INLINE2 -cl_boolean plusp (const cl_FF& x) +bool plusp (const cl_FF& x) { if (minusp(x)) - return cl_false; // x<0 -> nein + return false; // x<0 -> nein elif (zerop(x)) - return cl_false; // x=0 -> nein + return false; // x=0 -> nein else - return cl_true; // sonst ist x>0. + return true; // sonst ist x>0. } } // namespace cln