]> www.ginac.de Git - cln.git/blobdiff - src/integer/bitwise/cl_I_dpb.cc
Avoid some "suggest explicit braces to avoid ambiguous ‘else’" warnings.
[cln.git] / src / integer / bitwise / cl_I_dpb.cc
index fc642255bd82dc6d12047d8cfe459fa6527cdb1a..bd3ebed51687da579724ad039c8c4dc88e69478a 100644 (file)
@@ -1,16 +1,18 @@
 // dpb().
 
 // 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 dpb (const cl_I& newbyte, const cl_I& n, const cl_byte& b)
 {
@@ -19,3 +21,5 @@ const cl_I dpb (const cl_I& newbyte, const cl_I& n, const cl_byte& b)
       // = (DEPOSIT-FIELD (ASH newbyte p) (byte s p) integer)
       return deposit_field(ash(newbyte,b.position),n,b);
 }
+
+}  // namespace cln