mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-18 07:08:18 +00:00
committed by
Christian Helmuth
parent
f81d4cfbbb
commit
acd2a40076
@ -75,6 +75,15 @@ void Genode::print(Output &output, long long value)
|
||||
out_signed<long long>(value, 10, [&] (char c) { output.out_char(c); });
|
||||
}
|
||||
|
||||
void Genode::print(Output &output, float value)
|
||||
{
|
||||
out_float<float>(value, 10, 3, [&] (char c) { output.out_char(c); });
|
||||
}
|
||||
|
||||
void Genode::print(Output &output, double value)
|
||||
{
|
||||
out_float<double>(value, 10, 6, [&] (char c) { output.out_char(c); });
|
||||
}
|
||||
|
||||
void Genode::print(Output &output, Hex const &value)
|
||||
{
|
||||
|
Reference in New Issue
Block a user