GCC Code Coverage Report


Directory: src/
File: lib/info.cpp
Date: 2024-12-30 15:39:09
Exec Total Coverage
Lines: 4 4 100.0%
Functions: 2 2 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 #include "text_conversion.h"
2 #include "text_conversion_constexpr.h"
3
4 namespace text_conversion
5 {
6
7 1 const char* version()
8 {
9 1 return text_conversion_constexpr::version();
10 }
11
12 1 const char* date()
13 {
14 1 return __DATE__;
15 }
16
17 } // namespace text_conversion
18