]> www.ginac.de Git - cln.git/blobdiff - src/integer/conv/cl_I_from_DS.cc
Extend the exponent range from 32 bits to 64 bits on selected platforms.
[cln.git] / src / integer / conv / cl_I_from_DS.cc
index 8c4fb2db453ab45e45a180b58814d5edbc82240e..883f98fce4e8f55d075e7cfd0e45885cab4cb87e 100644 (file)
@@ -9,13 +9,15 @@
 
 // Implementation.
 
-#include "cl_number.h"
+#include "cln/number.h"
 #include "cl_DS.h"
 
 #undef MAYBE_INLINE
 #define MAYBE_INLINE inline
 #include "cl_I_from_NDS.cc"
 
+namespace cln {
+
 MAYBE_INLINE2
 const cl_I DS_to_I (const uintD* MSDptr, uintC len)
 {
@@ -39,3 +41,5 @@ const cl_I DS_to_I (const uintD* MSDptr, uintC len)
       // aber NDS_to_I wird auch damit fertig.
       return NDS_to_I(MSDptr,len);
 }
+
+}  // namespace cln