]> www.ginac.de Git - cln.git/blobdiff - include/cln/SV_complex.h
Add support for x86_64 CPU.
[cln.git] / include / cln / SV_complex.h
index ef0d03e09b0276d7893249bd9573dfe47e6f7df5..a7272eef741e0c96376ef07a42f930c1d5272ae9 100644 (file)
@@ -36,14 +36,14 @@ inline const cl_SV_N copy (const cl_SV_N& vector)
 }
 
 // Output.
-inline void fprint (cl_ostream stream, const cl_SV_N& x)
+inline void fprint (std::ostream& stream, const cl_SV_N& x)
 {
        extern cl_print_flags default_print_flags;
-       extern void print_vector (cl_ostream stream, const cl_print_flags& flags, void (* fun) (cl_ostream, const cl_print_flags&, const cl_number&), const cl_SV_number& vector);
-       extern void print_complex (cl_ostream stream, const cl_print_flags& flags, const cl_N& z);
+       extern void print_vector (std::ostream& stream, const cl_print_flags& flags, void (* fun) (std::ostream&, const cl_print_flags&, const cl_number&), const cl_SV_number& vector);
+       extern void print_complex (std::ostream& stream, const cl_print_flags& flags, const cl_N& z);
        print_vector(stream, default_print_flags,
-                    (void (*) (cl_ostream, const cl_print_flags&, const cl_number&))
-                    (void (*) (cl_ostream, const cl_print_flags&, const cl_N&))
+                    (void (*) (std::ostream&, const cl_print_flags&, const cl_number&))
+                    (void (*) (std::ostream&, const cl_print_flags&, const cl_N&))
                     &print_complex,
                     x);
 }