Add default initialization value

pull/17973/head
Vijay Pai 6 years ago committed by GitHub
parent a61785f184
commit 67c010b44f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/core/lib/iomgr/exec_ctx.h

@ -294,7 +294,7 @@ class ApplicationCallbackExecCtx {
static void GlobalShutdown(void) { gpr_tls_destroy(&callback_exec_ctx_); }
private:
uintptr_t flags_;
uintptr_t flags_{0u};
grpc_experimental_completion_queue_functor* head_{nullptr};
grpc_experimental_completion_queue_functor* tail_{nullptr};
GPR_TLS_CLASS_DECL(callback_exec_ctx_);

Loading…
Cancel
Save