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
-%

libs/base/src/base/size.cc
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