]> www.ginac.de Git - cln.git/blobdiff - src/real/transcendental/cl_R_cosh.cc
Cater to the fact that g++ 4.3 will use a different naming for
[cln.git] / src / real / transcendental / cl_R_cosh.cc
index 52b7ed4a525c7c7e95d78ee4ddfa02a47c8fc444..9dc0c8abe9429ccf0bf9fa65b223ce9b51524730 100644 (file)
@@ -4,14 +4,16 @@
 #include "cl_sysdep.h"
 
 // Specification.
-#include "cl_real.h"
+#include "cln/real.h"
 
 
 // Implementation.
 
-#include "cl_float.h"
+#include "cln/float.h"
 #include "cl_R.h"
 
+namespace cln {
+
 const cl_R cosh (const cl_R& x)
 {
 // Methode:
@@ -28,3 +30,5 @@ const cl_R cosh (const cl_R& x)
                return cosh(x);
        }
 }
+
+}  // namespace cln