]> www.ginac.de Git - cln.git/blobdiff - src/float/lfloat/elem/cl_LF_plus1.cc
Fix an extreme case in long-float multiplication.
[cln.git] / src / float / lfloat / elem / cl_LF_plus1.cc
index b431f7d648d28e03c9d94160819f1e572a66dc2b..e539f6be863086e098db827109f4c0d1e8c00230 100644 (file)
@@ -4,16 +4,20 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_lfloat.h"
+#include "cln/lfloat.h"
 
 
 // Implementation.
 
 #include "cl_LF.h"
 
+namespace cln {
+
 ALL_cl_LF_OPERATIONS_SAME_PRECISION()
 
 const cl_LF plus1 (const cl_LF& x)
 {
        return x + cl_I_to_LF(cl_I(1),TheLfloat(x)->len);
 }
+
+}  // namespace cln