[WIP/RFC] Pointer indirection #196

Merged
pks-t merged 15 commits from pointer-indirection into master 2015-05-30 15:23:23 -05:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit bde012f3d4 - Show all commits

View File

@ -16,6 +16,7 @@ type HandleList struct {
func NewHandleList() *HandleList {
return &HandleList{
handles: make([]interface{}, 5),
set: make(map[uintptr]bool),
}
}