X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Ffloat%2Fsfloat%2Felem%2Fcl_SF_minusp.cc;h=6e631591b97d433e1bd24eb8a8f6e7effa835151;hb=850abfde7f0d985ba01526c346bcd0d733562943;hp=900519d9684b41eb59afcfe96b8bb47142d2966e;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/float/sfloat/elem/cl_SF_minusp.cc b/src/float/sfloat/elem/cl_SF_minusp.cc index 900519d..6e63159 100644 --- a/src/float/sfloat/elem/cl_SF_minusp.cc +++ b/src/float/sfloat/elem/cl_SF_minusp.cc @@ -4,15 +4,19 @@ #include "cl_sysdep.h" // Specification. -#include "cl_sfloat.h" +#include "cln/sfloat.h" // Implementation. #include "cl_SF.h" +namespace cln { + MAYBE_INLINE cl_boolean minusp (const cl_SF& x) { return (cl_boolean) ((x.word & bit(SF_sign_shift)) != 0); } + +} // namespace cln