mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 04:09:33 -05:00
clang-tidy: Use default member initialization
This commit is contained in:
@@ -217,11 +217,8 @@ protected:
|
||||
// Store per-target progress counters.
|
||||
struct TargetProgress
|
||||
{
|
||||
TargetProgress()
|
||||
: NumberOfActions(0)
|
||||
{
|
||||
}
|
||||
unsigned long NumberOfActions;
|
||||
TargetProgress() {}
|
||||
unsigned long NumberOfActions = 0;
|
||||
std::string VariableFile;
|
||||
std::vector<unsigned long> Marks;
|
||||
void WriteProgressVariables(unsigned long total, unsigned long& current);
|
||||
|
||||
Reference in New Issue
Block a user