alibaba / hessian2-codec

hessian2-codec it is a complete C++ implementation of hessian2 spec
Apache License 2.0
26 stars 9 forks source link

update copts.bzl and fixed a compilation error when compiling with clang #12

Closed wbpcode closed 3 years ago

wbpcode commented 3 years ago

When trying to integrate the project into Envoy, because the C++ standard was set to C++14 in copts.bzl, the absl::string_view in Envoy was incompatible with the absl::string_view in the project. They are two different types. The C++ standard should not be set in copts.bzl to avoid similar problems.

Signed-off-by: wbpcode comems@msn.com

zyfjeff commented 3 years ago

LGTM