Skip to content

Commit

Permalink
Remove outdated comment for readDecimalText (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
khoad committed Sep 25, 2016
1 parent ca1710f commit bf1d486
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions nbfx/decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -394,10 +394,6 @@ func readListText(d *decoder) (string, error) {
return strings.Join(items, " "), nil
}

// Right now (July 2016) Go does not have a built-in type for decimal. This implementation
// is limited to float64, which is basically the largest built-in type that can be
// represented for a .NET 128-bit decimal.
// See [MS-OAUT] sec 2.2.26 and https://msdn.microsoft.com/en-us/library/364x0z75.aspx
func readDecimalText(d *decoder) (string, error) {
d.bin.Read(make([]byte, 2)) // wReserved - ignored

Expand Down

0 comments on commit bf1d486

Please sign in to comment.