google-protobuf 3.17.3-x86-linux → 3.18.1-x86-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

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: 53ff771120813dbc8978524eb29dad6b6a9013fe432bc711c4f82a108c053d04
4
- data.tar.gz: 2a23ace983918657e9a2c8e81e84a4138274fe2fa5c7caf9ae075b5e99364d04
3
+ metadata.gz: c9a8251054ae3b622a9bc9e8460679296aadf3db66e23626ce29651ce54832fb
4
+ data.tar.gz: bbc463d3b10635409c76765fdc054a3d6f8d56d9b8d66b9410514383fdea4627
5
5
  SHA512:
6
- metadata.gz: a35d11998a4b03546460b2869c0d9827c3d122a97d1e85083e8f428d8a0ce3da51b3f38e26b07378302f40e3c684fc241a916c4c70b63f9b7403ebfc46ada999
7
- data.tar.gz: 1a183c0801108ed713bed698050f67a5ecc2a2acbe38f84499cea573ad86a388e9a2ff9e6bf681f621d3ad53267213fa4ebb12ab523cdd8315b5fbb67d127f0e
6
+ metadata.gz: e502e3e5d468b8c8c4eea9d140cd280a04118e3bfb083ea6a7c81eda6317ad94f5c3f96c3265aa423acba17653455ccae8f900c01dfb2078f2d374edb44fad9b
7
+ data.tar.gz: 22908b1e6e50e2a2fcc34b58cf168ada30df3a1f84aabe4b46cc5657aec0d33e5d85c079774704363746d0f72ce95550f089e7d984ddd5eb8879841355036b2b
@@ -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: