aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/channel/context.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lib/channel/context.h')
-rw-r--r--src/core/lib/channel/context.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/lib/channel/context.h b/src/core/lib/channel/context.h
index 5daf48a9a9..763e4ffc9f 100644
--- a/src/core/lib/channel/context.h
+++ b/src/core/lib/channel/context.h
@@ -41,9 +41,9 @@ typedef enum {
GRPC_CONTEXT_COUNT
} grpc_context_index;
-typedef struct {
- void* value;
- void (*destroy)(void*);
-} grpc_call_context_element;
+struct grpc_call_context_element {
+ void* value = nullptr;
+ void (*destroy)(void*) = nullptr;
+};
#endif /* GRPC_CORE_LIB_CHANNEL_CONTEXT_H */