blob: b282f3cf40246b51a4cfe50ea676a06d0e034342 [file] [log] [blame]
Damien Neilcc2b0782019-04-05 14:33:10 -07001// Copyright 2019 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5// The protoreflect build tag disables use of fast-path methods.
6// +build protoreflect
7
8package proto
9
10import "github.com/golang/protobuf/v2/runtime/protoiface"
11
12func protoMethods(m Message) *protoiface.Methods {
13 return nil
14}