aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/vendor/github.com/google/pprof/internal/plugin
diff options
context:
space:
mode:
authorBryan C. Mills <bcmills@google.com>2020-02-03 11:38:49 -0500
committerBryan C. Mills <bcmills@google.com>2020-02-19 21:26:10 +0000
commit729930869064b1c6989b70ef8517a101d42c7f9b (patch)
treeae556c5e411ab0c56fc9aa4482c188a8c05bcaec /src/cmd/vendor/github.com/google/pprof/internal/plugin
parent2f2e97c00cf7da51ed692ff9b3f214eea4df4090 (diff)
downloadgo-729930869064b1c6989b70ef8517a101d42c7f9b.tar.xz
all: update module dependencies
Updates #36905 Updates #36907 Change-Id: I293dcef67800d5c81ff3a254bbd49309c5880710 Reviewed-on: https://go-review.googlesource.com/c/go/+/217517 Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Diffstat (limited to 'src/cmd/vendor/github.com/google/pprof/internal/plugin')
-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