X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;ds=sidebyside;f=src%2Finteger%2Fbitwise%2Fcl_I_fullbyte.cc;fp=src%2Finteger%2Fbitwise%2Fcl_I_fullbyte.cc;h=8177a4ce74576fbc41a5350506bf75ad05d3d65a;hb=850abfde7f0d985ba01526c346bcd0d733562943;hp=593378fc42703107c1167d216b2893f022c76308;hpb=e0b64ba4f92bb0323e5b241b465d17389ceff2d9;p=cln.git diff --git a/src/integer/bitwise/cl_I_fullbyte.cc b/src/integer/bitwise/cl_I_fullbyte.cc index 593378f..8177a4c 100644 --- a/src/integer/bitwise/cl_I_fullbyte.cc +++ b/src/integer/bitwise/cl_I_fullbyte.cc @@ -9,9 +9,11 @@ // Implementation. -#include "cl_integer.h" +#include "cln/integer.h" #include "cl_I.h" +namespace cln { + const cl_I cl_fullbyte (uintL p, uintL q) { if (p==q) @@ -19,3 +21,5 @@ const cl_I cl_fullbyte (uintL p, uintL q) else return ash(-1,UL_to_I(p)) + ash(1,UL_to_I(q)); } + +} // namespace cln