Skip to content
This repository was archived by the owner on Jan 16, 2024. It is now read-only.

Commit 75abe31

Browse files
committed
Bundle 21.12-9000 (2023-09-19)
1 parent f0445bc commit 75abe31

File tree

120 files changed

+7813
-7437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+7813
-7437
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# protobuf 3.19.4-1
1+
# protobuf 21.12-9000
22

3-
- mingw-w64-i686-protobuf-3.19.4-1-any.pkg.tar.xz
4-
- mingw-w64-x86_64-protobuf-3.19.4-1-any.pkg.tar.xz
5-
- mingw-w64-ucrt-x86_64-protobuf-3.19.4-1-any.pkg.tar.xz
3+
- mingw-w64-i686-protobuf-21.12-9000-any.pkg.tar.xz
4+
- mingw-w64-x86_64-protobuf-21.12-9000-any.pkg.tar.xz
5+
- mingw-w64-ucrt-x86_64-protobuf-21.12-9000-any.pkg.tar.xz

bin/protoc.exe

-63.5 KB
Binary file not shown.

bin32/protoc.exe

-76.5 KB
Binary file not shown.

include/google/protobuf/any.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
#include <google/protobuf/arenastring.h>
3838
#include <google/protobuf/message_lite.h>
3939

40+
// Must be included last.
4041
#include <google/protobuf/port_def.inc>
4142

4243
namespace google {
@@ -129,8 +130,8 @@ class PROTOBUF_EXPORT AnyMetadata {
129130
// *full_type_name. Returns false if the type_url does not have a "/"
130131
// in the type url separating the full type name.
131132
//
132-
// NOTE: this function is available publicly as:
133-
// google::protobuf::Any() // static method on the generated message type.
133+
// NOTE: this function is available publicly as a static method on the
134+
// generated message type: google::protobuf::Any::ParseAnyTypeUrl()
134135
bool ParseAnyTypeUrl(StringPiece type_url, std::string* full_type_name);
135136

136137
// Get the proto type name and prefix from Any::type_url value. For example,

include/google/protobuf/any.pb.h

Lines changed: 43 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

include/google/protobuf/any.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ option objc_class_prefix = "GPB";
6464
// foo = any.unpack(Foo.class);
6565
// }
6666
//
67-
// Example 3: Pack and unpack a message in Python.
67+
// Example 3: Pack and unpack a message in Python.
6868
//
6969
// foo = Foo(...)
7070
// any = Any()
@@ -74,7 +74,7 @@ option objc_class_prefix = "GPB";
7474
// any.Unpack(foo)
7575
// ...
7676
//
77-
// Example 4: Pack and unpack a message in Go
77+
// Example 4: Pack and unpack a message in Go
7878
//
7979
// foo := &pb.Foo{...}
8080
// any, err := anypb.New(foo)
@@ -95,7 +95,7 @@ option objc_class_prefix = "GPB";
9595
//
9696
//
9797
// JSON
98-
// ====
98+
//
9999
// The JSON representation of an `Any` value uses the regular
100100
// representation of the deserialized, embedded message, with an
101101
// additional field `@type` which contains the type URL. Example:

0 commit comments

Comments
 (0)