Quellcode durchsuchen

refactor: remove operator< from Property

Sam Jaffe vor 2 Jahren
Ursprung
Commit
cfb98c92c4
1 geänderte Dateien mit 0 neuen und 5 gelöschten Zeilen
  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_;
-  }
 };
 
 }