aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/gprpp
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2018-06-13 14:49:25 -0700
committerGravatar GitHub <noreply@github.com>2018-06-13 14:49:25 -0700
commit0159026111b4dac15ddd228baee3757554898235 (patch)
treeee14b853ed3196219b1a2b13b18cf0b5c929f73d /src/core/lib/gprpp
parent057fd3f57515e373ca4d220f48d1550c45eb7709 (diff)
Revert "Second attempt: move recv_trailing_metadata into its own callback, don't use on_complete for recv_ops"
Diffstat (limited to 'src/core/lib/gprpp')
-rw-r--r--src/core/lib/gprpp/inlined_vector.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/lib/gprpp/inlined_vector.h b/src/core/lib/gprpp/inlined_vector.h
index 0d2586e507..f36f6cb706 100644
--- a/src/core/lib/gprpp/inlined_vector.h
+++ b/src/core/lib/gprpp/inlined_vector.h
@@ -99,8 +99,6 @@ class InlinedVector {
void push_back(T&& value) { emplace_back(std::move(value)); }
size_t size() const { return size_; }
- bool empty() const { return size_ == 0; }
-
size_t capacity() const { return capacity_; }
void clear() {