Просмотр исходного кода

graph: discard the no longer necessary operator!=

skypjack 1 месяц назад
Родитель
Сommit
16a8c25bd6
1 измененных файлов с 0 добавлено и 5 удалено
  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;
 }
 
-template<typename Container>
-[[nodiscard]] constexpr bool operator!=(const edge_iterator<Container> &lhs, const edge_iterator<Container> &rhs) noexcept {
-    return !(lhs == rhs);
-}
-
 } // namespace internal
 /*! @endcond */