]> www.ginac.de Git - cln.git/blobdiff - src/base/output/cl_output_hex.cc
* */*: cl_istream -> std::istream, cl_ostream -> std::ostream.
[cln.git] / src / base / output / cl_output_hex.cc
index 552612e6e1528bcfbdfee0151ac05630d8c27992..57b1ed199c4b680fa2c3a1e217a4f354555b58df 100644 (file)
@@ -11,7 +11,7 @@
 
 namespace cln {
 
-void fprinthexadecimal (cl_ostream stream, unsigned long x)
+void fprinthexadecimal (std::ostream& stream, unsigned long x)
 {
        #define bufsize 16
        var char buf[bufsize+1];
@@ -27,7 +27,7 @@ void fprinthexadecimal (cl_ostream stream, unsigned long x)
        #undef bufsize
 }
 
-void fprinthexadecimal (cl_ostream stream, long x)
+void fprinthexadecimal (std::ostream& stream, long x)
 {
        if (x >= 0)
                fprintdecimal(stream,(unsigned long)x);