]> www.ginac.de Git - cln.git/blobdiff - src/integer/bitwise/cl_I_dpf.cc
Avoid some "suggest explicit braces to avoid ambiguous ‘else’" warnings.
[cln.git] / src / integer / bitwise / cl_I_dpf.cc
index 7597853bd286f2d94053d8e8de1ee679a40a0fe5..9281f8196210d5f85fde40f6655e93a261a0d561 100644 (file)
@@ -1,16 +1,18 @@
 // deposit_field().
 
 // General includes.
-#include "cl_sysdep.h"
+#include "base/cl_sysdep.h"
 
 // Specification.
-#include "cl_integer.h"
+#include "cln/integer.h"
 
 
 // Implementation.
 
-#include "cl_integer.h"
-#include "cl_I.h"
+#include "cln/integer.h"
+#include "integer/cl_I.h"
+
+namespace cln {
 
 const cl_I deposit_field (const cl_I& newbyte, const cl_I& n, const cl_byte& b)
 {
@@ -22,3 +24,5 @@ const cl_I deposit_field (const cl_I& newbyte, const cl_I& n, const cl_byte& b)
       //    )       )
       return logxor(n, ash(logxor(ldb(newbyte,b),ldb(n,b)), b.position));
 }
+
+}  // namespace cln