aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/bin
diff options
context:
space:
mode:
authorGravatar vjpai <vpai@google.com>2015-05-18 09:20:43 -0700
committerGravatar vjpai <vpai@google.com>2015-05-18 09:20:43 -0700
commitccced5389de0258b9f1d37681efcb8be57a6ef10 (patch)
tree86eb0674d00268e333a7294c9a45bc49541e6d1e /src/ruby/bin
parent6a608020b0e10f258d64f7b2a5b5cc02643ed9bc (diff)
parentcc1c37c3e5aa7dc5e0da761e1bff0fe8e1fbaaee (diff)
Merge branch 'master' into poisson
Conflicts: Makefile
Diffstat (limited to 'src/ruby/bin')
-rwxr-xr-xsrc/ruby/bin/math.proto14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ruby/bin/math.proto b/src/ruby/bin/math.proto
index e34ad5e967..311e148c02 100755
--- a/src/ruby/bin/math.proto
+++ b/src/ruby/bin/math.proto
@@ -33,25 +33,25 @@ syntax = "proto3";
package math;
message DivArgs {
- optional int64 dividend = 1;
- optional int64 divisor = 2;
+ int64 dividend = 1;
+ int64 divisor = 2;
}
message DivReply {
- optional int64 quotient = 1;
- optional int64 remainder = 2;
+ int64 quotient = 1;
+ int64 remainder = 2;
}
message FibArgs {
- optional int64 limit = 1;
+ int64 limit = 1;
}
message Num {
- optional int64 num = 1;
+ int64 num = 1;
}
message FibReply {
- optional int64 count = 1;
+ int64 count = 1;
}
service Math {