aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/pkg/profile/trace16.go
blob: 6aa6566ef6d6cfbb8ef88b1bd5d22026300fb41c (plain)
1
2
3
4
5
6
7
8
9
10
// +build !go1.7

package profile

import "io"

// mock trace support for Go 1.6 and earlier.

func startTrace(w io.Writer) error { return nil }
func stopTrace()                   {}