Skip to content

Commit

Permalink
remove unused arg
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Jun 26, 2024
1 parent d121995 commit 6585053
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/libs/antares/study/area/area.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ void Area::internalInitialize()

Area::Area():
reserves(fhrMax, HOURS_PER_YEAR),
miscGen(fhhMax, HOURS_PER_YEAR),
hydro(*this)
miscGen(fhhMax, HOURS_PER_YEAR)
{
internalInitialize();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class PartHydro
/*!
** \brief Default Constructor
*/
PartHydro(const Data::Area& area);
PartHydro();
//! Destructor
~PartHydro();

Expand Down
2 changes: 1 addition & 1 deletion src/libs/antares/study/parts/hydro/container.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ using namespace Yuni;

namespace Antares::Data
{
PartHydro::PartHydro(const Data::Area& area) :
PartHydro::PartHydro() :
interDailyBreakdown(0.),
intraDailyModulation(2.),
intermonthlyBreakdown(0),
Expand Down

0 comments on commit 6585053

Please sign in to comment.