summaryrefslogtreecommitdiff
path: root/src/pkg/big/nat.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/big/nat.go')
-rw-r--r--src/pkg/big/nat.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/pkg/big/nat.go b/src/pkg/big/nat.go
index 9a59f049c..99ddefb62 100644
--- a/src/pkg/big/nat.go
+++ b/src/pkg/big/nat.go
@@ -482,6 +482,4 @@ func shiftRight(dst, src []Word, n int) {
// greaterThan returns true iff (x1<<_W + x2) > (y1<<_W + y2)
-func greaterThan(x1, x2, y1, y2 Word) bool {
- return x1 > y1 || x1 == y1 && x2 > y2;
-}
+func greaterThan(x1, x2, y1, y2 Word) bool { return x1 > y1 || x1 == y1 && x2 > y2 }