Skip to content

Commit

Permalink
private group_
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Feb 10, 2025
1 parent 76d9aa1 commit f06d849
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ class Cluster
std::string pName;
std::string pID;

private:
std::string group_ = "OTHER";

private:
virtual unsigned int precision() const = 0;
};
} // namespace Data
Expand Down
2 changes: 1 addition & 1 deletion src/libs/antares/study/parts/renewable/cluster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void Data::RenewableCluster::copyFrom(const RenewableCluster& cluster)
// the ID for example)

// group
group_ = cluster.group_;
setGroup(cluster.getGroup());

// Enabled
enabled = cluster.enabled;
Expand Down
2 changes: 1 addition & 1 deletion src/libs/antares/study/parts/thermal/cluster.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void Data::ThermalCluster::copyFrom(const ThermalCluster& cluster)
mustrunOrigin = cluster.mustrunOrigin;

// group
group_ = cluster.group_;
setGroup(cluster.getGroup());

// Enabled
enabled = cluster.enabled;
Expand Down

0 comments on commit f06d849

Please sign in to comment.