mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
parent
114f73f822
commit
d8bc797ed5
2 changed files with 3 additions and 5 deletions
|
|
@ -51,9 +51,7 @@ func (j *decoder) Int64(i int64) { j.value = float64(i) }
|
|||
|
||||
func (j *decoder) Uint64(i uint64) { j.value = float64(i) }
|
||||
|
||||
func (j *decoder) Float64(f float64) {
|
||||
j.value = float64(f)
|
||||
}
|
||||
func (j *decoder) Float64(f float64) { j.value = float64(f) }
|
||||
|
||||
func (j *decoder) String(s string) { j.value = s }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue