From 82a7becd9af6ff24584426a36166901e5d7a0465 Mon Sep 17 00:00:00 2001 From: Leonardo Di Donato Date: Tue, 3 Sep 2019 14:49:08 +0000 Subject: [PATCH] chore(userspace/falco): grpc context format Co-authored-by: Lorenzo Fontana Signed-off-by: Leonardo Di Donato --- userspace/falco/grpc_context.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/userspace/falco/grpc_context.h b/userspace/falco/grpc_context.h index dc471ccf..07021792 100644 --- a/userspace/falco/grpc_context.h +++ b/userspace/falco/grpc_context.h @@ -39,10 +39,10 @@ private: class stream_context : public context { public: - stream_context(grpc::ServerContext* ctx): context(ctx) {} + stream_context(grpc::ServerContext* ctx): + context(ctx){}; ~stream_context() = default; -private: enum : char { STREAMING = 1, @@ -53,4 +53,4 @@ private: mutable void* m_stream = nullptr; // Are there more responses to stream? mutable bool m_has_more = false; -}; +}; \ No newline at end of file