Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-ganyushin committed Mar 22, 2023
1 parent 0794132 commit 0950065
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/adios2/core/Group.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ std::vector<std::string> Group::AvailableVariables()
// look into map
std::set<std::string> val = mapPtr->treeMap[currentPath];
std::vector<std::string> available_variables;
for (auto const& v : val)
for (auto const &v : val)
{
if (mapPtr->treeMap.find(currentPath + groupDelimiter + v) ==
mapPtr->treeMap.end())
Expand All @@ -138,7 +138,7 @@ std::vector<std::string> Group::AvailableAttributes()
std::set<std::string> val = mapPtr->treeMap[currentPath];
// TODODG check that currentPath exists
std::vector<std::string> available_attributes;
for (auto const& v : val)
for (auto const &v : val)
{
if (mapPtr->treeMap.find(currentPath + groupDelimiter + v) ==
mapPtr->treeMap.end())
Expand Down

0 comments on commit 0950065

Please sign in to comment.