GCC Code Coverage Report
./
Coverage:
low: ≥ 0%
medium: ≥ 75.0%
high: ≥ 90.0%
Lines:
0 of 2, 0 excluded
0.0%
Functions:
0 of 1, 0 excluded
0.0%
Branches:
0 of 0, 0 excluded
-%
List of functions
Function (File:Line)
Calls
Lines
Branches
Blocks
eu::string_from[abi:cxx11](eu::Size const&) (libs/base/src/base/size.cc:6)
not called
0.0%
-%
0.0%
libs/base/src/base/size.cc
0 covered
2 uncovered
0 partial covered
0 excluded
Line
Branch
Exec
Source
1
#include
"base/size.h"
2
3
4
namespace
eu
5
{
6
✗
std
::
string
string_from
(
const
Size
&
v
)
7
✗
{
return
fmt
::
format
(
"{}x{}"
,
v
.
width
,
v
.
height
);
}
8
}
9