0
0
Fork 0

change from const to var so apps can adjust value

This commit is contained in:
Marty Schoch 2016-08-31 16:43:50 -04:00
parent 521003d543
commit c5465eccb1
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ import (
// PreAllocSizeSkipCap will cap preallocation to this amount when
// size+skip exceeds this value
const PreAllocSizeSkipCap = 1000
var PreAllocSizeSkipCap = 1000
type collectorCompare func(i, j *search.DocumentMatch) int