Coverage Report

Created: 2026-03-12 06:35

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/CMake/Source/cmGenExEvaluation.cxx
Line
Count
Source
1
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2
   file LICENSE.rst or https://cmake.org/licensing for details.  */
3
#include "cmGenExEvaluation.h"
4
5
#include <utility>
6
7
#include "cmGenExContext.h"
8
9
namespace cm {
10
namespace GenEx {
11
12
Evaluation::Evaluation(GenEx::Context context, bool quiet,
13
                       cmGeneratorTarget const* headTarget,
14
                       cmGeneratorTarget const* currentTarget,
15
                       bool evaluateForBuildsystem,
16
                       cmListFileBacktrace backtrace)
17
0
  : Context(std::move(context))
18
0
  , Backtrace(std::move(backtrace))
19
0
  , HeadTarget(headTarget)
20
0
  , CurrentTarget(currentTarget)
21
0
  , Quiet(quiet)
22
0
  , EvaluateForBuildsystem(evaluateForBuildsystem)
23
0
{
24
0
}
25
26
}
27
}