From 1bea9d3f7e1419e5f9f3c52a92088b84620e728b Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 18 Mar 2017 15:00:41 -0500 Subject: [PATCH] Remove int bound constants --- values.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/values.go b/values.go index 3491efed..c399b42c 100644 --- a/values.go +++ b/values.go @@ -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