Merge commit '36bca61764984ff5395653cf8377ec5daa71b709' as 'libs/protobuf'

This commit is contained in:
Henry Winkel
2022-10-22 14:46:58 +02:00
2186 changed files with 838730 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
syntax = "proto3";
package com.google.protobuf.jruby;
option optimize_for = CODE_SIZE;
message Sentinel {
int32 default_int32 = 1;
int64 default_int64 = 2;
uint32 default_unit32 = 3;
uint64 default_uint64 = 4;
string default_string = 5;
bool default_bool = 6;
float default_float = 7;
double default_double = 8;
bytes default_bytes = 9;
}