From 35ab5bc616919ee30da3156643dac70d7b011f55 Mon Sep 17 00:00:00 2001 From: Jacob Dlougach Date: Thu, 21 May 2020 14:17:45 +0100 Subject: [PATCH] Include for std::unique_ptr Currently `#include ` in some compilers (gcc 8, for example) will fail due to missing `` include. This PR fixes this issue. --- include/grpcpp/impl/codegen/interceptor.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/grpcpp/impl/codegen/interceptor.h b/include/grpcpp/impl/codegen/interceptor.h index 18c7cf33e2f..71c32d70f4c 100644 --- a/include/grpcpp/impl/codegen/interceptor.h +++ b/include/grpcpp/impl/codegen/interceptor.h @@ -19,6 +19,8 @@ #ifndef GRPCPP_IMPL_CODEGEN_INTERCEPTOR_H #define GRPCPP_IMPL_CODEGEN_INTERCEPTOR_H +#include + #include #include #include