You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
346 B
21 lines
346 B
// print_float().
|
|
|
|
// General includes.
|
|
#include "cl_sysdep.h"
|
|
|
|
// Specification.
|
|
#include "cln/float_io.h"
|
|
|
|
|
|
// Implementation.
|
|
|
|
#include "cln/output.h"
|
|
|
|
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
|