2
0

Use ++ instead of += 1

This commit is contained in:
Jack Christensen
2020-05-07 20:25:38 -05:00
parent f9ce8af5c9
commit f18351f61c
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ func (eqb *extendedQueryBuilder) Reset() {
eqb.paramFormats = eqb.paramFormats[0:0]
eqb.resultFormats = eqb.resultFormats[0:0]
eqb.resetCount += 1
eqb.resetCount++
// Every so often shrink our reserved memory if it is abnormally high
if eqb.resetCount%128 == 0 {