Browse Source

graph: discard the no longer necessary operator!=

skypjack 2 months ago
parent
commit
16a8c25bd6
1 changed files with 0 additions and 5 deletions
  1. 0 5
      src/entt/graph/adjacency_matrix.hpp

+ 0 - 5
src/entt/graph/adjacency_matrix.hpp

@@ -79,11 +79,6 @@ template<typename Container>
     return lhs.pos == rhs.pos;
     return lhs.pos == rhs.pos;
 }
 }
 
 
-template<typename Container>
-[[nodiscard]] constexpr bool operator!=(const edge_iterator<Container> &lhs, const edge_iterator<Container> &rhs) noexcept {
-    return !(lhs == rhs);
-}
-
 } // namespace internal
 } // namespace internal
 /*! @endcond */
 /*! @endcond */