Skip to content

Commit

Permalink
Remove 'error' type comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joncom committed Jul 28, 2014
1 parent 94aa643 commit 0105047
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NeuQuant.js
Expand Up @@ -471,7 +471,7 @@ NeuQuant = function()
p[0] -= (a * (p[0] - b)) / alpharadbias;
p[1] -= (a * (p[1] - g)) / alpharadbias;
p[2] -= (a * (p[2] - r)) / alpharadbias;
} catch (e /*Error*/ ) {} // prevents 1.3 miscompilation
} catch (e) {} // prevents 1.3 miscompilation
}

if (k > lo)
Expand All @@ -482,7 +482,7 @@ NeuQuant = function()
p[0] -= (a * (p[0] - b)) / alpharadbias;
p[1] -= (a * (p[1] - g)) / alpharadbias;
p[2] -= (a * (p[2] - r)) / alpharadbias;
} catch (e /*Error*/ ) {}
} catch (e) {}
}
}
}
Expand Down

0 comments on commit 0105047

Please sign in to comment.