]> www.ginac.de Git - cln.git/blobdiff - src/complex/ring/cl_C_ring.cc
* */*: Remove cl_boolean, cl_true, and cl_false in favor of built-in
[cln.git] / src / complex / ring / cl_C_ring.cc
index aa01740198c8a5b8423b3fef08083e22abbea5e2..296971aaa327c64e34af28a6aae503723cb5f400 100644 (file)
@@ -23,7 +23,7 @@ static void N_fprint (cl_heap_ring* R, std::ostream& stream, const _cl_ring_elem
        fprint(stream,The(cl_N)(x));
 }
 
-static cl_boolean N_equal (cl_heap_ring* R, const _cl_ring_element& x, const _cl_ring_element& y)
+static bool N_equal (cl_heap_ring* R, const _cl_ring_element& x, const _cl_ring_element& y)
 {
        unused R;
        return equal(The(cl_N)(x),The(cl_N)(y));
@@ -34,7 +34,7 @@ static const _cl_ring_element N_zero (cl_heap_ring* R)
        return _cl_ring_element(R, (cl_N)0);
 }
 
-static cl_boolean N_zerop (cl_heap_ring* R, const _cl_ring_element& x)
+static bool N_zerop (cl_heap_ring* R, const _cl_ring_element& x)
 {
        unused R;
        // Here we return true only if x is the *exact* zero. Because we
@@ -84,12 +84,10 @@ static const _cl_ring_element N_expt_pos (cl_heap_ring* R, const _cl_ring_elemen
        return _cl_ring_element(R, expt(The(cl_N)(x),y));
 }
 
-static cl_boolean cl_N_p (const cl_number& x)
+static bool cl_N_p (const cl_number& x)
 {
-       return (cl_boolean)
-              (!x.pointer_p()
-               || (x.pointer_type()->flags & cl_class_flags_subclass_complex) != 0
-              );
+       return (!x.pointer_p()
+               || (x.pointer_type()->flags & cl_class_flags_subclass_complex) != 0);
 }
 
 static cl_ring_setops N_setops = {
@@ -153,6 +151,7 @@ cl_class cl_class_complex_ring = {
 };
 
 // Constructor.
+template <>
 inline cl_complex_ring::cl_specialized_number_ring ()
        : cl_number_ring (new cl_heap_complex_ring()) {}