aboutsummaryrefslogtreecommitdiff
path: root/src/math/big/float.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/big/float.go')
-rw-r--r--src/math/big/float.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/math/big/float.go b/src/math/big/float.go
index a8c91a6e54..70c7b794a4 100644
--- a/src/math/big/float.go
+++ b/src/math/big/float.go
@@ -236,7 +236,6 @@ func (x *Float) Acc() Accuracy {
// -1 if x < 0
// 0 if x is ±0
// +1 if x > 0
-//
func (x *Float) Sign() int {
if debugFloat {
x.validate()
@@ -1672,7 +1671,6 @@ func (z *Float) Quo(x, y *Float) *Float {
// -1 if x < y
// 0 if x == y (incl. -0 == 0, -Inf == -Inf, and +Inf == +Inf)
// +1 if x > y
-//
func (x *Float) Cmp(y *Float) int {
if debugFloat {
x.validate()
@@ -1707,7 +1705,6 @@ func (x *Float) Cmp(y *Float) int {
// 0 if x == 0 (signed or unsigned)
// +1 if 0 < x < +Inf
// +2 if x == +Inf
-//
func (x *Float) ord() int {
var m int
switch x.form {