]> www.ginac.de Git - cln.git/blob - src/float/misc/cl_F_eqhashcode.cc
Fix compilation with GCC 4.4.
[cln.git] / src / float / misc / cl_F_eqhashcode.cc
1 // cl_F equal_hashcode().
2
3 // General includes.
4 #include "base/cl_sysdep.h"
5
6 // Specification.
7 #include "cln/float.h"
8
9
10 // Implementation.
11
12 #include "base/cl_N.h"
13 #include "float/cl_F.h"
14
15 #include "base/cl_inline.h"
16 #include "float/sfloat/misc/cl_SF_eqhashcode.cc"
17 #include "float/ffloat/misc/cl_FF_eqhashcode.cc"
18 #include "float/dfloat/misc/cl_DF_eqhashcode.cc"
19 #include "float/lfloat/misc/cl_LF_eqhashcode.cc"
20
21 namespace cln {
22
23 uint32 CL_FLATTEN equal_hashcode (const cl_F& x)
24 {
25         floatcase(x
26         ,       return equal_hashcode_inline(x);
27         ,       return equal_hashcode_inline(x);
28         ,       return equal_hashcode_inline(x);
29         ,       return equal_hashcode_inline(x);
30         );
31 }
32
33 }  // namespace cln