X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Ffloat%2Fffloat%2Felem%2Fcl_FF_minusp.cc;h=196aef047665df0b6b017f1a11134542390334ac;hb=HEAD;hp=2f34de29d8efa6aa7cd1d7aedd2566c3f6bf1b79;hpb=5370ad8054201cf23d4f94a52f4d3f7f9f3cd511;p=cln.git diff --git a/src/float/ffloat/elem/cl_FF_minusp.cc b/src/float/ffloat/elem/cl_FF_minusp.cc index 2f34de2..196aef0 100644 --- a/src/float/ffloat/elem/cl_FF_minusp.cc +++ b/src/float/ffloat/elem/cl_FF_minusp.cc @@ -1,7 +1,7 @@ // minusp(). // General includes. -#include "cl_sysdep.h" +#include "base/cl_sysdep.h" // Specification. #include "cln/ffloat.h" @@ -9,12 +9,11 @@ // Implementation. -#include "cl_FF.h" +#include "float/ffloat/cl_FF.h" namespace cln { -MAYBE_INLINE -bool minusp (const cl_FF& x) +CL_INLINE bool CL_INLINE_DECL(minusp) (const cl_FF& x) { return (sint32)cl_ffloat_value(x) < 0; }