浏览代码

refactor: remove operator< from Property

Sam Jaffe 2 年之前
父节点
当前提交
b2ecc7a41e
共有 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_;
-  }
 };
 
 }