]> www.ginac.de Git - cln.git/blobdiff - src/float/sfloat/elem/cl_SF_plus.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / sfloat / elem / cl_SF_plus.cc
index 9e81451fc355ebef74616ce585fca7780c68eaf6..2f4fc4841a3a5e2601ae49b56d09d17861299fa5 100644 (file)
@@ -4,7 +4,7 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_sfloat.h"
+#include "cln/sfloat.h"
 
 
 // Implementation.
@@ -12,6 +12,8 @@
 #include "cl_SF.h"
 #include "cl_xmacros.h"
 
+namespace cln {
+
 const cl_SF operator+ (const cl_SF& x1, const cl_SF& x2)
 {
 // Methode (nach [Knuth, II, Seminumerical Algorithms, Abschnitt 4.2.1., S.200]):
@@ -122,3 +124,5 @@ const cl_SF operator+ (const cl_SF& x1, const cl_SF& x2)
       return encode_SF(sign1,exp1,mant1);
      }
 }
+
+}  // namespace cln