Stub version of buffer_pool.go for Go 1.2, which doesn't have sync.Pool.
(b []byte)
| 5 | // Stub version of buffer_pool.go for Go 1.2, which doesn't have sync.Pool. |
| 6 | |
| 7 | func Pool(b []byte) {} |
| 8 | |
| 9 | func makeSlice(n int) []byte { |
| 10 | return make([]byte, n) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…