aboutsummaryrefslogtreecommitdiff
path: root/const.go
diff options
context:
space:
mode:
Diffstat (limited to 'const.go')
-rw-r--r--const.go18
1 files changed, 0 insertions, 18 deletions
diff --git a/const.go b/const.go
deleted file mode 100644
index 4669347..0000000
--- a/const.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package bolt
-
-const version = 2
-
-const (
- maxUint = ^uint(0)
- minUint = 0
- maxInt = int(^uint(0) >> 1)
- minInt = -maxInt - 1
-)
-
-const (
- // MaxKeySize is the maximum length of a key, in bytes.
- MaxKeySize = 32768
-
- // MaxValueSize is the maximum length of a value, in bytes.
- MaxValueSize = 4294967295
-)