X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Fmodinteger%2Fcl_MI_lshift.cc;h=7f501b5328a3e6fff86b85dca5d2ba35df7da082;hb=6d4cabf35e0bc58bac8d4a348c9d2349df183fdf;hp=0bfea4fafb6041772aadf4a75aaff727fdaef509;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/modinteger/cl_MI_lshift.cc b/src/modinteger/cl_MI_lshift.cc index 0bfea4f..7f501b5 100644 --- a/src/modinteger/cl_MI_lshift.cc +++ b/src/modinteger/cl_MI_lshift.cc @@ -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