Remove int bound constants

v3-numeric-wip
Jack Christensen 2017-03-18 15:00:41 -05:00
parent 9ab59a74a9
commit 1bea9d3f7e
1 changed files with 0 additions and 4 deletions

View File

@ -15,10 +15,6 @@ const (
BinaryFormatCode = 1
)
const maxUint = ^uint(0)
const maxInt = int(maxUint >> 1)
const minInt = -maxInt - 1
// SerializationError occurs on failure to encode or decode a value
type SerializationError string