]> www.ginac.de Git - cln.git/blob - src/float/elem/cl_F_plus.cc
* All Files have been modified for inclusion of namespace cln;
[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 "cln/float.h"
8
9
10 // Implementation.
11
12 #include "cl_F.h"
13 #include "cln/sfloat.h"
14 #include "cln/ffloat.h"
15 #include "cln/dfloat.h"
16 #include "cln/lfloat.h"
17 #include "cl_LF.h"
18
19 namespace cln {
20
21 ALL_cl_LF_OPERATIONS_SAME_PRECISION()
22
23 const cl_F operator+ (const cl_F& x, const cl_F& y)
24 #define plus(a,b) a+b
25 GEN_F_OP2(x,y, plus, 1, 0, return)
26
27 }  // namespace cln