]> www.ginac.de Git - cln.git/blobdiff - src/modinteger/cl_MI_lshift.cc
Fix crashes in find_univpoly_ring and related functions
[cln.git] / src / modinteger / cl_MI_lshift.cc
index 0bfea4fafb6041772aadf4a75aaff727fdaef509..7f501b5328a3e6fff86b85dca5d2ba35df7da082 100644 (file)
@@ -4,12 +4,14 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_modinteger.h"
+#include "cln/modinteger.h"
 
 
 // Implementation.
 
-#include "cl_integer.h"
+#include "cln/integer.h"
+
+namespace cln {
 
 const cl_MI operator<< (const cl_MI& x, sintL y) // assume 0 <= y < 2^31
 {
@@ -29,3 +31,5 @@ const cl_MI operator<< (const cl_MI& x, sintL y) // assume 0 <= y < 2^31
        else
                return x * expt_pos(R->canonhom(2), (cl_I)(long)y);
 }
+
+}  // namespace cln