]> www.ginac.de Git - cln.git/blobdiff - include/cln/SV_complex.h
Remove some unused configuration macros.
[cln.git] / include / cln / SV_complex.h
index ef0d03e09b0276d7893249bd9573dfe47e6f7df5..fd2eca04ca3299efbbab25f9f817ac361da6bd5e 100644 (file)
@@ -19,7 +19,7 @@ public:
        // Constructors.
        cl_SV_N () : cl_SV<cl_N,cl_SV_number> ((cl_heap_SV_N*) (cl_heap_SV_number*) cl_null_SV_number) {};
        cl_SV_N (const cl_SV_N&);
-       explicit cl_SV_N (uintL len) : cl_SV<cl_N,cl_SV_number> ((cl_heap_SV_N*) cl_make_heap_SV_number(len)) {};
+       explicit cl_SV_N (std::size_t len) : cl_SV<cl_N,cl_SV_number> ((cl_heap_SV_N*) cl_make_heap_SV_number(len)) {};
        // Assignment operators.
        cl_SV_N& operator= (const cl_SV_N&);
        // Private pointer manipulations.
@@ -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);
 }