Browse Source

adjacency_matrix: default destructor

Michele Caini 1 year ago
parent
commit
387528bdcc
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/entt/graph/adjacency_matrix.hpp

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

@@ -166,6 +166,9 @@ public:
         : matrix{std::move(other.matrix), allocator},
         : matrix{std::move(other.matrix), allocator},
           vert{std::exchange(other.vert, 0u)} {}
           vert{std::exchange(other.vert, 0u)} {}
 
 
+    /*! @brief Default destructor. */
+    ~adjacency_matrix() noexcept = default;
+
     /**
     /**
      * @brief Default copy assignment operator.
      * @brief Default copy assignment operator.
      * @param other The instance to copy from.
      * @param other The instance to copy from.