You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was done to support old versions of gRPC that used grpc++ instead of grpcpp for their include directory. But gRPC has supported grpcpp since version 1.10, 2018, which we likely can't even build with anyways: https://github.com/grpc/grpc/tree/v1.10.0/include
And new APIs aren't in the grpc++ directory. So instead of having useless defines, let's just get rid of this branch.
Component(s)
C++, FlightRPC
The text was updated successfully, but these errors were encountered:
### Rationale for this change
It's for gRPC < 1.10 and we require gRPC >= 1.30.0. So we can get rid of it.
### What changes are included in this PR?
Get rid of GRPCPP_PP_INCLUDE.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
* Closes: #36511
Authored-by: Sutou Kouhei <kou@clear-code.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
…#36679)
### Rationale for this change
It's for gRPC < 1.10 and we require gRPC >= 1.30.0. So we can get rid of it.
### What changes are included in this PR?
Get rid of GRPCPP_PP_INCLUDE.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
* Closes: apache#36511
Authored-by: Sutou Kouhei <kou@clear-code.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
…#36679)
### Rationale for this change
It's for gRPC < 1.10 and we require gRPC >= 1.30.0. So we can get rid of it.
### What changes are included in this PR?
Get rid of GRPCPP_PP_INCLUDE.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
* Closes: apache#36511
Authored-by: Sutou Kouhei <kou@clear-code.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
Describe the enhancement requested
This was done to support old versions of gRPC that used
grpc++
instead ofgrpcpp
for their include directory. But gRPC has supported grpcpp since version 1.10, 2018, which we likely can't even build with anyways: https://github.com/grpc/grpc/tree/v1.10.0/includeAnd new APIs aren't in the
grpc++
directory. So instead of having useless defines, let's just get rid of this branch.Component(s)
C++, FlightRPC
The text was updated successfully, but these errors were encountered: