Skip to content
Snippets Groups Projects
Commit dcd1c5cd authored by Brad King's avatar Brad King
Browse files

BUG: Initialize ctest_coverage command ivar

This initializes the LabelsMentioned ivar in cmCTestCoverageCommand.
parent 6d242ca2
No related branches found
No related tags found
No related merge requests found
......@@ -19,6 +19,13 @@
#include "cmCTest.h"
#include "cmCTestCoverageHandler.h"
//----------------------------------------------------------------------------
cmCTestCoverageCommand::cmCTestCoverageCommand()
{
this->LabelsMentioned = false;
}
//----------------------------------------------------------------------------
cmCTestGenericHandler* cmCTestCoverageCommand::InitializeHandler()
{
this->CTest->SetCTestConfigurationFromCMakeVariable(this->Makefile,
......
......@@ -28,7 +28,7 @@ class cmCTestCoverageCommand : public cmCTestHandlerCommand
{
public:
cmCTestCoverageCommand() {}
cmCTestCoverageCommand();
/**
* This is a virtual constructor for the command.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment