XdsClient: fix object deletion problem on import (#28254)

pull/28263/head
Mark D. Roth 3 years ago committed by GitHub
parent 50a207ee9c
commit 0073403206
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/core/ext/xds/xds_api.cc

@ -803,7 +803,9 @@ struct EncodingContext {
class XdsResourceType {
public:
// A base type for resource data.
struct ResourceData {};
struct ResourceData {
virtual ~ResourceData() = default;
};
struct DecodeResult {
std::string name;

Loading…
Cancel
Save