File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed 
ext/filters/client_channel Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ struct XdsLocalityInfo {
3737
3838  //  This comparator only compares the locality names.
3939  struct  Less  {
40-     bool  operator ()(const  XdsLocalityInfo& lhs, const  XdsLocalityInfo& rhs) {
40+     bool  operator ()(const  XdsLocalityInfo& lhs,
41+                     const  XdsLocalityInfo& rhs) const  {
4142      return  XdsLocalityName::Less ()(lhs.locality_name , rhs.locality_name );
4243    }
4344  };
Original file line number Diff line number Diff line change @@ -160,6 +160,8 @@ class ResolvingLoadBalancingPolicy::ResolvingControlHelper
160160    }
161161  }
162162
163+   void  AddTraceEvent (TraceSeverity severity, const  char * message) override  {}
164+ 
163165  void  set_child (LoadBalancingPolicy* child) { child_ = child; }
164166
165167 private: 
Original file line number Diff line number Diff line change @@ -81,7 +81,10 @@ class BaseNode : public RefCounted<BaseNode> {
8181    kSocket ,
8282  };
8383
84+  protected: 
8485  BaseNode (EntityType type, UniquePtr<char > name);
86+ 
87+  public: 
8588  virtual  ~BaseNode ();
8689
8790  //  All children must implement this function.
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments