Skip to content

Commit 4c8e090

Browse files
authored
change parameters for plus ( Int32 -> Int64) (#2)
* int32 -> int64 * int32 -> int64
1 parent db819a8 commit 4c8e090

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

proto/helloworld.pb.go

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

proto/helloworld.proto

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ message HelloReply {
3131
}
3232

3333
message PlusRequest {
34-
int32 a = 1;
35-
int32 b = 2;
34+
int64 a = 1;
35+
int64 b = 2;
3636
}
3737

3838
message PlusReply {
39-
int32 result = 1;
39+
int64 result = 1;
4040
}

0 commit comments

Comments
 (0)