(p *int, _ string, d int, _ string)
| 132 | } |
| 133 | |
| 134 | func (f inlineFlagset) IntVar(p *int, _ string, d int, _ string) { |
| 135 | *p = d |
| 136 | } |
| 137 | |
| 138 | func (f inlineFlagset) Float64Var(p *float64, _ string, d float64, _ string) { |
| 139 | *p = d |
nothing calls this directly
no outgoing calls
no test coverage detected