Kaynağa Gözat

refactor: remove operator< from Property

Sam Jaffe 2 yıl önce
ebeveyn
işleme
cfb98c92c4
1 değiştirilmiş dosya ile 0 ekleme ve 5 silme
  1. 0 5
      include/reflection/property.h

+ 0 - 5
include/reflection/property.h

@@ -39,11 +39,6 @@ public:
   
   auto begin() const { return path_.begin(); }
   auto end() const { return path_.end(); }
-  
-protected:
-  friend bool operator<(Property const &lhs, Property const &rhs) {
-    return lhs.path_ < rhs.path_;
-  }
 };
 
 }