]> www.ginac.de Git - cln.git/blob - src/float/sfloat/elem/cl_SF_zerop.cc
Fix linking problems on some platforms caused by inline/non-inline versions
[cln.git] / src / float / sfloat / elem / cl_SF_zerop.cc
1 // zerop().
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cln/sfloat.h"
8
9
10 // Implementation.
11
12 #include "cl_SF.h"
13
14 namespace cln {
15
16 CL_INLINE bool CL_INLINE_DECL(zerop) (const cl_SF& x)
17 {
18         return x.word == make_SF_word(0,0,0);
19 }
20
21 }  // namespace cln