X-Git-Url: https://ginac.de/CLN/cln.git//cln.git?a=blobdiff_plain;f=src%2Ffloat%2Foutput%2Fcl_F_bprint.cc;h=bfd78995f0e6e5788b9b8b947d9ca61c09c71ad1;hb=a8369235e23acbacbad414dc1675be8c279e27a2;hp=d19e1d52a8475e1e8325d773d663cc76bbd891f2;hpb=dd9e0f894eec7e2a8cf85078330ddc0a6639090b;p=cln.git diff --git a/src/float/output/cl_F_bprint.cc b/src/float/output/cl_F_bprint.cc index d19e1d5..bfd7899 100644 --- a/src/float/output/cl_F_bprint.cc +++ b/src/float/output/cl_F_bprint.cc @@ -4,14 +4,18 @@ #include "cl_sysdep.h" // Specification. -#include "cl_float_io.h" +#include "cln/float_io.h" // Implementation. -#include "cl_output.h" +#include "cln/output.h" -void print_float (cl_ostream stream, const cl_print_number_flags& flags, const cl_F& z) +namespace cln { + +void print_float (std::ostream& stream, const cl_print_number_flags& flags, const cl_F& z) { print_float(stream,(const cl_print_real_flags&)flags,z); } + +} // namespace cln