]> www.ginac.de Git - cln.git/blobdiff - src/real/transcendental/cl_R_log.cc
Cater to the fact that g++ 4.3 will use a different naming for
[cln.git] / src / real / transcendental / cl_R_log.cc
index 2834b54ffb24d77738c58137fe6b609ded143028..00d42fe0d3477e1233e201754b8c1959bb650d1d 100644 (file)
@@ -30,7 +30,7 @@ const cl_R log (const cl_R& a, const cl_R& b)
        Mutable(cl_R,b);
        if (rationalp(b)) {
                // b rational
-               if (eq(b,1)) { cl_error_division_by_0(); }
+               if (eq(b,1)) { throw division_by_0_exception(); }
                if (rationalp(a)) {
                        // a,b beide rational
                        var cl_RA l;