File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -90,12 +90,13 @@ type DB struct {
9090 declTypes map [string ]string
9191}
9292
93- // cStmt is a wrapper around an sqlite3 *sqlite3_stmt. Except it's stored as
94- // uintptr to avoid allocations due to poor interactions between cgo's pointer
95- // checker and Go's escape analysis.
93+ // cStmt is a wrapper around an sqlite3 *sqlite3_stmt. Except rather than
94+ // storing it as a pointer, it's stored as uintptr to avoid allocations due to
95+ // poor interactions between cgo's pointer checker and Go's escape analysis.
9696//
9797// The ptr method returns the value as a pointer, for call sites that haven't
98- // yet or don't need the optimization. This lets us migrate incrementally.
98+ // yet been optimized or don't need the optimization. This lets us migrate
99+ // incrementally.
99100//
100101// See http://go/corp/9919.
101102type cStmt struct {
You can’t perform that action at this time.
0 commit comments