Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheecour committed Feb 21, 2018
1 parent 88a8ce7 commit 7b07d40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
},
"dependencies":
{
"mir-algorithm": "~>0.6.6"
"mir-algorithm": "~>0.9.1"
}
},
{
Expand Down
4 changes: 2 additions & 2 deletions source/dcv/core/utils.d
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ package(dcv) @nogc pure nothrow

Range[4] borders = [
Range(iota(shape[0]), iota(kh)),
Range(iota(shape[0]), iota!ptrdiff_t([kh], shape[1] - kh)),
Range(iota(shape[0]), iota([kh], shape[1] - kh)),
Range(iota(kh), iota(shape[1])),
Range(iota!ptrdiff_t([kh], shape[0] - kh), iota(shape[1])),
Range(iota([kh], shape[0] - kh), iota(shape[1])),
];

return borders;
Expand Down

0 comments on commit 7b07d40

Please sign in to comment.