GCC Code Coverage Report


Directory: tests/excl-line-branch/
File: bar.cpp
Date: 0000-00-00 00:00:00
Exec Total Coverage
Lines: 0 0 100.0%
Functions: 0 0 -%
Branches: 0 0 -%
Conditions: 0 0 -%

Line Branch Condition Exec Source
1
2 class Bar
3 {
4 public:
5 Bar() : m_param(1)
6 {}
7 virtual ~Bar()
8 {} // possible compiler-generated destruction code - auto-detected and excluded
9
10 private:
11 int m_param;
12 };
13
14 int bar(int param) { // never called, GCOV_EXCL_START
15 if (param) {
16 return 1;
17 }
18 return 0;
19 } // GCOV_EXCL_STOP
20