aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2018-08-23 14:59:32 -0700
committerGravatar GitHub <noreply@github.com>2018-08-23 14:59:32 -0700
commit3ad8df35f03a95745e40d229ad5b92dd6d9f1cfd (patch)
tree9833534a16bc06cc28c26b98bc2f12ebd233059e /doc
parentf9eeae77f32fe8fe4e2c5939ace0aa9e6531da38 (diff)
parent616b5d798a818d976b0bbb2ab2b1ce8c4fa6ac0e (diff)
Merge pull request #16383 from vjpai/tidy
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)