]> www.ginac.de Git - cln.git/blobdiff - src/real/transcendental/cl_R_exp.cc
Remove exception hooks in favor of real C++ exceptions:
[cln.git] / src / real / transcendental / cl_R_exp.cc
index 1c62b0774a06c3e1810a1006f5a00804921c1be2..4babcb9151365ac8a5520513111fba8b66eac6bf 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 exp (const cl_R& x)
 {
 // Methode:
@@ -28,3 +30,5 @@ const cl_R exp (const cl_R& x)
                return exp(x);
        }
 }
+
+}  // namespace cln