]> www.ginac.de Git - cln.git/commitdiff
* include/cln/float.h (cos_sin_t, cosh_sinh_t): Add default ctor.
authorRichard Kreckel <kreckel@ginac.de>
Fri, 11 Jan 2008 22:01:42 +0000 (22:01 +0000)
committerRichard Kreckel <kreckel@ginac.de>
Fri, 11 Jan 2008 22:01:42 +0000 (22:01 +0000)
ChangeLog
include/cln/float.h

index bd5292c0435d42a7000a72d20d0e090130982d39..6d40705c08a48c02d935dbc84c4cb4cc98985a23 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-01-11  Richard B. Kreckel  <kreckel@ginac.de>
+
+       * include/cln/float.h (cos_sin_t, cosh_sinh_t): Add default ctor.
+
 2008-01-11  Richard B. Kreckel  <kreckel@ginac.de>
 
        Make some functions more memory efficient:
index 2f0a58ce4b51076d66202a401bd377e2e76553f8..6bfd2bb1ad750cf61e34ce98d04a1810440833a0 100644 (file)
@@ -616,6 +616,7 @@ struct cos_sin_t {
        cl_R cos;
        cl_R sin;
 // Constructor:
+       cos_sin_t () {}
        cos_sin_t (const cl_R& u, const cl_R& v) : cos (u), sin (v) {}
 };
 
@@ -659,6 +660,7 @@ struct cosh_sinh_t {
        cl_R cosh;
        cl_R sinh;
 // Constructor:
+       cosh_sinh_t () {}
        cosh_sinh_t (const cl_R& u, const cl_R& v) : cosh (u), sinh (v) {}
 };