]> www.ginac.de Git - cln.git/blob - src/float/elem/cl_F_plus.cc
149b34430be9c70bf8c03ec65397ee4b011ed5ac
[cln.git] / src / float / elem / cl_F_plus.cc
1 // binary operator +
2
3 // General includes.
4 #include "cl_sysdep.h"
5
6 // Specification.
7 #include "cl_float.h"
8
9
10 // Implementation.
11
12 #include "cl_F.h"
13 #include "cl_sfloat.h"
14 #include "cl_ffloat.h"
15 #include "cl_dfloat.h"
16 #include "cl_lfloat.h"
17 #include "cl_LF.h"
18
19 ALL_cl_LF_OPERATIONS_SAME_PRECISION()
20
21 const cl_F operator+ (const cl_F& x, const cl_F& y)
22 #define plus(a,b) a+b
23 GEN_F_OP2(x,y, plus, 1, 0, return)