| 3 | import "strconv" |
| 4 | |
| 5 | type IntFlag struct { |
| 6 | Name string |
| 7 | Value int |
| 8 | Usage string |
| 9 | ShortName string |
| 10 | Hidden bool |
| 11 | } |
| 12 | |
| 13 | func (f *IntFlag) Set(v string) { |
| 14 | i, _ := strconv.ParseInt(v, 10, 32) |
nothing calls this directly
no outgoing calls
no test coverage detected