google-protobuf 3.17.3-x86_64-linux → 3.18.1-x86_64-linux

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of google-protobuf might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6cafd6f145638ad9bb647fc7255431964a5ed0d6fb3b1a4fa80365d4ffefcad7
4
- data.tar.gz: a82afd7301c5b90d288bc92911c5e7c83f2402285c0a5859f19fd116b5db8b7b
3
+ metadata.gz: c0b28a1431ce6112f1743be5a205bdc7d4991331904551ca2407e5c34337ffe4
4
+ data.tar.gz: 210dba0273f83ac73caed076f910c97e649f87fb23f7247ddb30ea273e80fc87
5
5
  SHA512:
6
- metadata.gz: 7f10a7eaf6818a33adad21e030099a5b84d15ddeaf87dbc6af2be7015a73260d92365dbdbdc014ee30512fbd68b65ac48a0e42dbbaaab82647784aad4617395b
7
- data.tar.gz: 06645f39ba75a34857ce1f52f7b7c7042f91255f57fe8d8b91e9fdf063c5414c39ea518ff727e725c95535572105b9794ead757f95d3807e1e86c5400794e19a
6
+ metadata.gz: 2fb29413dede7b8e6f9172c346dd775e40af9725d171aa03f92754021279ee76c299448c4a5d26a426fcfa2d262c22f0e8e00fe22d74eb0faf67d668ec4049bb
7
+ data.tar.gz: 82975f04cb10c3d851b18712742c4dc9a03adf9ca8a27f64e1b039c778ba2a11dccb4379238aec4a64b5a234fc19f0277c1a40bc99282efdc09d3dce4df070ab
@@ -41,7 +41,6 @@
41
41
 
42
42
  #include "message.h"
43
43
  #include "protobuf.h"
44
- #include "third_party/wyhash/wyhash.h"
45
44
 
46
45
  static upb_strview Convert_StringData(VALUE str, upb_arena *arena) {
47
46
  upb_strview ret;
@@ -328,19 +327,19 @@ bool Msgval_IsEqual(upb_msgval val1, upb_msgval val2, TypeInfo type_info) {
328
327
  uint64_t Msgval_GetHash(upb_msgval val, TypeInfo type_info, uint64_t seed) {
329
328
  switch (type_info.type) {
330
329
  case UPB_TYPE_BOOL:
331
- return wyhash(&val, 1, seed, _wyp);
330
+ return Wyhash(&val, 1, seed, kWyhashSalt);
332
331
  case UPB_TYPE_FLOAT:
333
332
  case UPB_TYPE_INT32:
334
333
  case UPB_TYPE_UINT32:
335
334
  case UPB_TYPE_ENUM:
336
- return wyhash(&val, 4, seed, _wyp);
335
+ return Wyhash(&val, 4, seed, kWyhashSalt);
337
336
  case UPB_TYPE_DOUBLE:
338
337
  case UPB_TYPE_INT64:
339
338
  case UPB_TYPE_UINT64:
340
- return wyhash(&val, 8, seed, _wyp);
339
+ return Wyhash(&val, 8, seed, kWyhashSalt);
341
340
  case UPB_TYPE_STRING:
342
341
  case UPB_TYPE_BYTES:
343
- return wyhash(val.str_val.data, val.str_val.size, seed, _wyp);
342
+ return Wyhash(val.str_val.data, val.str_val.size, seed, kWyhashSalt);
344
343
  case UPB_TYPE_MESSAGE:
345
344
  return Message_Hash(val.msg_val, type_info.def.msgdef, seed);
346
345
  default: