liuxiaolong
2019-12-04 abd6d2381b39009f8bd9faf47ddf4535a1596fdc
es.pb.go
@@ -9,7 +9,6 @@
   proto "github.com/gogo/protobuf/proto"
   io "io"
   math "math"
   math_bits "math/bits"
)
// Reference imports to suppress errors if they are not otherwise used.
@@ -944,7 +943,14 @@
}
func sovEs(x uint64) (n int) {
   return (math_bits.Len64(x|1) + 6) / 7
   for {
      n++
      x >>= 7
      if x == 0 {
         break
      }
   }
   return n
}
func sozEs(x uint64) (n int) {
   return sovEs(uint64((x << 1) ^ uint64((int64(x) >> 63))))