Skip to content

Commit

Permalink
fix bug to read the reserve parameters whose names are more than 30 c…
Browse files Browse the repository at this point in the history
…aracters long
  • Loading branch information
bencamus committed Dec 12, 2024
1 parent c0ec60a commit 57ca4b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/antares/study/area/list.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ static bool AreaListLoadFromFolderSingleArea(Study& study,
{
for (auto* p = section.firstProperty; p; p = p->next)
{
CString<30, false> tmp;
CString<32, false> tmp;
tmp = p->key;
tmp.toLower();

Expand Down

0 comments on commit 57ca4b4

Please sign in to comment.