google-protobuf 3.17.3-x86-mingw32 → 3.18.1-x86-mingw32

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: 34506c79222aa9ad5b8dd3f3cefdad5826b563b07ab2a9a0b402fba8c664e80b
4
- data.tar.gz: fbc9cad6429f03145cee42cbcef51681d3973f5b036143d0af5e5708e919623d
3
+ metadata.gz: 12decc51f51b49a2f9b6546f8988e2c2c69ee6a740a153a91f22dad033ecf2cc
4
+ data.tar.gz: 34fcb283acf2258b35e54edb1d4d721ce2d2bd1def0b7a2e5d9673d761bd79f4
5
5
  SHA512:
6
- metadata.gz: b8b713a9a5ecb78e3badd8aa5dab442631bc924579d840cd33acb979b8d67826c3d5b94219ce1576cc5e597a813f6d33a1177f7f6b6af66395d3aefe34bea622
7
- data.tar.gz: 6063c71c3cff942ab701046a35520e1a8d8c80560e85528901a251540c7574f1cd95c7297dc97a01553fcafb4e04ba29c23c2fe15d61b40a6d0253a8a8458ad1
6
+ metadata.gz: d1211b562ef5e70a0f4efaaf02d535f0276d865c357fe511bc806ab9940e9c0216ca0271d0d33fce2c55249dfa2fa7dad24c99f6673a2f0e1446bb75686e7911
7
+ data.tar.gz: 5f5556772a5cd43605050b1ef2215cd1384228eb6c17b1d0358add43abbc025388ec77168930e4287031181a543562c2ff314a4031346a097d3aeeeca03c4738
@@ -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: