]> www.ginac.de Git - cln.git/blobdiff - src/real/format-output/cl_fmt_oldroman.cc
* */*: cl_istream -> std::istream, cl_ostream -> std::ostream.
[cln.git] / src / real / format-output / cl_fmt_oldroman.cc
index df3343c2d2d0a17dede3b24f5efdcca5aa9fc7a6..b69029bc29da1029f4709250c9babf572f34b1f8 100644 (file)
 
 namespace cln {
 
-void format_old_roman (cl_ostream stream, const cl_I& arg)
+void format_old_roman (std::ostream& stream, const cl_I& arg)
 {
        if (!(0 < arg && arg < 5000)) {
-               fprint(stderr, "format_old_roman: argument should be in the range 1 - 4999, not ");
-               fprint(stderr, arg);
-               fprint(stderr, ".\n");
+               fprint(std::cerr, "format_old_roman: argument should be in the range 1 - 4999, not ");
+               fprint(std::cerr, arg);
+               fprint(std::cerr, ".\n");
                cl_abort();
        }
        var uintL value = cl_I_to_UL(arg);