-------------------------------------------------------------------------
| 21 | { |
| 22 | //------------------------------------------------------------------------- |
| 23 | RunCoverageSettings::RunCoverageSettings( |
| 24 | const StartInfo& startInfo, |
| 25 | const CoverageFilterSettings& settings, |
| 26 | const std::vector<UnifiedDiffSettings>& unifiedDiffSettings, |
| 27 | const std::vector<std::wstring>& excludedLineRegexes, |
| 28 | const std::vector<SubstitutePdbSourcePath>& substitutePdbSourcePath) |
| 29 | : startInfo_{startInfo}, |
| 30 | coverageFilterSettings_{settings}, |
| 31 | unifiedDiffSettings_{unifiedDiffSettings}, |
| 32 | coverChildren_{false}, |
| 33 | continueAfterCppException_{false}, |
| 34 | maxUnmatchPathsForWarning_{0}, |
| 35 | optimizedBuildSupport_{false}, |
| 36 | excludedLineRegexes_{excludedLineRegexes}, |
| 37 | substitutePdbSourcePath_{substitutePdbSourcePath} |
| 38 | { |
| 39 | } |
| 40 | |
| 41 | //------------------------------------------------------------------------- |
| 42 | void RunCoverageSettings::SetCoverChildren(bool coverChildren) |
nothing calls this directly
no outgoing calls
no test coverage detected