google-protobuf 3.15.6 → 3.19.3

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: e6f2d2b024b64eb8c142ff7eaea74a58431a8a12f936ab7152ab5c8721efd121
4
- data.tar.gz: 4ed37ac80d30d80f12a18d1b9608b4793d1d25304937b80fdb031cae748a8da2
3
+ metadata.gz: 1a1524fee05989875c9c6b20a6f6d79fcb72b5d547ada4e66537d8ff9e4172cb
4
+ data.tar.gz: 95f30f2e811ddd512758f4f42b821f295370e74040dee2573fda512945b4fee6
5
5
  SHA512:
6
- metadata.gz: a42d5b9110675cb943a6add8acb5981d81ebbed4827adea17d7d5a819b42dd3e1ae9d0a5cf26288ab4f90f6a6ca28d3325ac431043e50510703aa5fafbef9cac
7
- data.tar.gz: 1774c58e9133f64859d84745a39b099b43a0006b331b1926cab3e42ccc8e352c03e1dce990d050253f9c537fb07ed230af10c85558379c68864320a016e1a0e3
6
+ metadata.gz: 72687468b582768ff68b729c692d3417fa5d120e302ed74b304ef809ea48b70a041a308b256caae8a322986cb8202f2123660940890f224acdfbba69b7c9aafc
7
+ data.tar.gz: 8e53444340734ae7a4cfc43f62595e1812283ff5ef1e60f462dc57cdac416d8e052d745a76d6b247279a74a0f85ac66e50b6286f772e78434e324b2910d95308
@@ -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: