commit | aec20bdc50a63999be093ef092014c8537da545d | [log] [tgz] |
---|---|---|
author | Andrea Campanella <andrea@opennetworking.org> | Thu Feb 25 12:41:34 2021 +0100 |
committer | Andrea Campanella <andrea@opennetworking.org> | Thu Feb 25 12:41:34 2021 +0100 |
tree | cd113775ec2c28854ea974d3c95534440fcfa278 | |
parent | f304cc49aa1b3b189976ac120cae632e9edffaff [diff] [blame] |
Updating protos version Change-Id: I2889e2853e1660b816e4515656cdf01f49b2900a
diff --git a/vendor/golang.org/x/net/http2/hpack/huffman.go b/vendor/golang.org/x/net/http2/hpack/huffman.go index b412a96..a1ab2f0 100644 --- a/vendor/golang.org/x/net/http2/hpack/huffman.go +++ b/vendor/golang.org/x/net/http2/hpack/huffman.go
@@ -105,7 +105,14 @@ return nil } +// incomparable is a zero-width, non-comparable type. Adding it to a struct +// makes that struct also non-comparable, and generally doesn't add +// any size (as long as it's first). +type incomparable [0]func() + type node struct { + _ incomparable + // children is non-nil for internal nodes children *[256]*node