Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
anagainaru committed Jul 15, 2024
1 parent 0bc5e02 commit 29d0b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/adios2/toolkit/derived/Expression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ std::string ExpressionTree::toStringExpr()
if (!detail.indices.empty())
{
result += "[ ";
for (std::tuple<int, int, int> idx : detail.indices)
for (std::tuple<size_t, size_t, size_t> idx : detail.indices)
{
result += (std::get<0>(idx) < 0 ? "" : std::to_string(std::get<0>(idx))) + ":";
result += (std::get<1>(idx) < 0 ? "" : std::to_string(std::get<1>(idx))) + ":";
Expand Down

0 comments on commit 29d0b66

Please sign in to comment.