1
0
Fork 0

Counters are no longer passed by reference

This commit is contained in:
Gregory Eremin 2014-07-12 17:39:47 +07:00
parent 4c29b300f6
commit 77d4f7f253
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import (
type (
Queue struct {
Name string
Counter *Counter
Counter Counter
}
)