aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/slice/slice_string_helpers.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-01-26 13:51:24 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-01-26 13:51:24 -0800
commitc2e85bf9f619357c2272756417fa21911881c375 (patch)
tree19499736fc3954c5f6db3d9eaf2540d93007ef2f /src/core/lib/slice/slice_string_helpers.c
parentf8ea95786fc0c266c93881e4df4be9871196ac66 (diff)
parent4edd56751f8309f55922518f2598c35f3c007b1e (diff)
Merge branch 'maxmsgsz' into bm_msgsz
Diffstat (limited to 'src/core/lib/slice/slice_string_helpers.c')
-rw-r--r--src/core/lib/slice/slice_string_helpers.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/core/lib/slice/slice_string_helpers.c b/src/core/lib/slice/slice_string_helpers.c
index 99695007cc..839c366b32 100644
--- a/src/core/lib/slice/slice_string_helpers.c
+++ b/src/core/lib/slice/slice_string_helpers.c
@@ -88,8 +88,3 @@ void grpc_slice_split(grpc_slice str, const char *sep, grpc_slice_buffer *dst) {
grpc_slice_buffer_add_indexed(dst, grpc_slice_ref_internal(str));
}
}
-
-bool grpc_parse_slice_to_uint32(grpc_slice str, uint32_t *result) {
- return gpr_parse_bytes_to_uint32((const char *)GRPC_SLICE_START_PTR(str),
- GRPC_SLICE_LENGTH(str), result) != 0;
-}