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