GCC Code Coverage Report
Directory: cmake-example-component-lib Exec Total Coverage
File: source/SquareRoot/SquareRoot.cxx Lines: 1 1 100.0 %
Date: 2021-03-15 07:36:42 Branches: 0 0 - %

Line Branch Exec Source
1
#include <mathfunctions/SquareRoot.h>
2
3
#include <cmath>
4
5
namespace MathFunctions {
6
10
  auto sqrt(double x) -> double { return std::sqrt(x); }
7
}  // namespace MathFunctions