Skip to content

Commit

Permalink
Comment out unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Mar 9, 2014
1 parent 0a737c3 commit 3590218
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Auxiliary/Cactus/SourceFiles/Kranc.cc
Expand Up @@ -35,11 +35,11 @@ static int idiv(int x, int y)
// round down manually if the result is negative
return (x^y) >= 0 ? x/y : (x-y+1)/y;
}
// Modulo, rounding to minus infinity
static int imod(int x, int y)
{
return (x^y) >= 0 ? x%y : (x-y+1)%y + y-1;
}
// // Modulo, rounding to minus infinity
// static int imod(int x, int y)
// {
// return (x^y) >= 0 ? x%y : (x-y+1)%y + y-1;
// }
// Align x to a multiple of y
static int ialign(int x, int y)
{
Expand Down

0 comments on commit 3590218

Please sign in to comment.