aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go')
-rw-r--r--src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go b/src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go
index a304284c31..4c1db2331f 100644
--- a/src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go
+++ b/src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go
@@ -61,13 +61,6 @@ type FlagSet interface {
Float64(name string, def float64, usage string) *float64
String(name string, def string, usage string) *string
- // BoolVar, IntVar, Float64Var, and StringVar define new flags referencing
- // a given pointer, like the functions of the same name in package flag.
- BoolVar(pointer *bool, name string, def bool, usage string)
- IntVar(pointer *int, name string, def int, usage string)
- Float64Var(pointer *float64, name string, def float64, usage string)
- StringVar(pointer *string, name string, def string, usage string)
-
// StringList is similar to String but allows multiple values for a
// single flag
StringList(name string, def string, usage string) *[]*string