Skip to content
This repository was archived by the owner on Feb 21, 2024. It is now read-only.

Commit 62e172d

Browse files
committed
Unexport DefaultMapSize on 32-bit
1 parent 4689ada commit 62e172d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

translate_mapsize_386.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package pilosa
22

3-
// DefaultMapSize is the default size of mapped memory for the translate store.
3+
// defaultMapSize is the default size of mapped memory for the translate store.
44
// It is passed as an int to syscall.Mmap and so must be < 2^31
5-
const DefaultMapSize = (1 << 31) - 1 // 2GB
5+
const defaultMapSize = (1 << 31) - 1 // 2GB

0 commit comments

Comments
 (0)