aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2018-08-17 13:38:48 -0700
committerGravatar Vijay Pai <vpai@google.com>2018-08-17 13:38:48 -0700
commit616b5d798a818d976b0bbb2ab2b1ce8c4fa6ac0e (patch)
tree58703e08251e3c2d0255c9884da5dc2ccc7caf28 /doc
parent7e4be890148cae7d9350007d4372f7492c52569c (diff)
Cast an index to size_t to avoid sign-conversion warning
Diffstat (limited to 'doc')
-rw-r--r--doc/cpp/pending_api_cleanups.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/cpp/pending_api_cleanups.md b/doc/cpp/pending_api_cleanups.md
index fa19b52002..5c231eda2c 100644
--- a/doc/cpp/pending_api_cleanups.md
+++ b/doc/cpp/pending_api_cleanups.md
@@ -17,3 +17,6 @@ number:
`include/grpc++/impl/codegen/client_context.h` (commit `9477724`)
- remove directory `include/grpc++` and all headers in it
(commit `eb06572`)
+- make all `Request` and `Mark` methods in `grpc::Service` take a
+ `size_t` argument for `index` rather than `int` (since that is only
+ used as a vector index)