Skip to content

Commit

Permalink
remove math.MaxPrec temporary
Browse files Browse the repository at this point in the history
See #49
  • Loading branch information
mattn committed Jan 31, 2017
1 parent 37f1a34 commit 45c4072
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion builtins/math/big/big.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ func Import(env *vm.Env) *vm.Env {
m.Define("Jacobi", t.Jacobi)
m.Define("MaxBase", t.MaxBase)
m.Define("MaxExp", t.MaxExp)
m.Define("MaxPrec", t.MaxPrec)
// TODO https://github.com/mattn/anko/issues/49
//m.Define("MaxPrec", t.MaxPrec)
m.Define("MinExp", t.MinExp)
m.Define("NewFloat", t.NewFloat)
m.Define("NewInt", t.NewInt)
Expand Down

0 comments on commit 45c4072

Please sign in to comment.