]> www.ginac.de Git - cln.git/blobdiff - src/float/sfloat/misc/cl_SF_idecode.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / float / sfloat / misc / cl_SF_idecode.cc
index a3b59a5dea22ad78a0f0f7e3d4abe5bdc58764d1..2fa34c1f9dd46755691f879fdd68385afa829a3b 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_I.h"
 
+namespace cln {
+
 MAYBE_INLINE
 const cl_idecoded_float integer_decode_float (const cl_SF& x)
 {
@@ -28,3 +30,5 @@ const cl_idecoded_float integer_decode_float (const cl_SF& x)
                (sign>=0 ? cl_I(1) : cl_I(-1)) // (-1)^s erzeugen
               );
 }
+
+}  // namespace cln