]> www.ginac.de Git - cln.git/blobdiff - src/float/dfloat/misc/cl_DF_min.cc
Extend the exponent range from 32 bits to 64 bits on selected platforms.
[cln.git] / src / float / dfloat / misc / cl_DF_min.cc
index 7768cf875dc8881b3dd6a6d3b51b0005f4794519..c1a903cbdf012428a1f936a8c0a0f31a4a83200a 100644 (file)
@@ -4,12 +4,16 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_dfloat.h"
+#include "cln/dfloat.h"
 
 
 // Implementation.
 
+namespace cln {
+
 const cl_DF min (const cl_DF& x, const cl_DF& y)
 {
        return (x <= y ? x : y);
 }
+
+}  // namespace cln