Skip to content

Commit

Permalink
remove unused type queries
Browse files Browse the repository at this point in the history
Signed-off-by: Jade Abraham <[email protected]>
  • Loading branch information
jabraham17 committed Oct 21, 2024
1 parent b3f8e1f commit 7965d11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/dists/DSIUtil.chpl
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ proc densify(subs, wholes, userErrors = true)
return result;
}

proc densify(s: range(?,bounds=?B), w: range(?IT,?), userErrors=true
proc densify(s: range(?,bounds=?), w: range(?IT,?), userErrors=true
) : densiResult(s, w)
{
_densiEnsureBounded(s);
Expand Down Expand Up @@ -425,7 +425,7 @@ proc unDensify(denses, wholes, userErrors = true)
return result;
}

proc unDensify(dense: range(?dIT,bounds=?B), whole: range(?IT,?)
proc unDensify(dense: range(?dIT,bounds=?), whole: range(?IT,?)
) : densiResult(dense, whole)
{
_undensEnsureBounded(dense);
Expand Down

0 comments on commit 7965d11

Please sign in to comment.