]> www.ginac.de Git - cln.git/blobdiff - src/integer/bitwise/cl_I_fullbyte.cc
* All Files have been modified for inclusion of namespace cln;
[cln.git] / src / integer / bitwise / cl_I_fullbyte.cc
index 593378fc42703107c1167d216b2893f022c76308..8177a4ce74576fbc41a5350506bf75ad05d3d65a 100644 (file)
@@ -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