ソースを参照

refactor: remove operator< from Property

Sam Jaffe 2 年 前
コミット
cfb98c92c4
1 ファイル変更0 行追加5 行削除
  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_;
-  }
 };
 
 }