Browse Source

snapshot: default destructor(s)

Michele Caini 1 year ago
parent
commit
84b48c1a30
1 changed files with 9 additions and 0 deletions
  1. 9 0
      src/entt/entity/snapshot.hpp

+ 9 - 0
src/entt/entity/snapshot.hpp

@@ -64,6 +64,9 @@ public:
     /*! @brief Default move constructor. */
     basic_snapshot(basic_snapshot &&) noexcept = default;
 
+    /*! @brief Default destructor. */
+    ~basic_snapshot() noexcept = default;
+
     /*! @brief Default move assignment operator. @return This snapshot. */
     basic_snapshot &operator=(basic_snapshot &&) noexcept = default;
 
@@ -181,6 +184,9 @@ public:
     /*! @brief Default move constructor. */
     basic_snapshot_loader(basic_snapshot_loader &&) noexcept = default;
 
+    /*! @brief Default destructor. */
+    ~basic_snapshot_loader() noexcept = default;
+
     /*! @brief Default move assignment operator. @return This loader. */
     basic_snapshot_loader &operator=(basic_snapshot_loader &&) noexcept = default;
 
@@ -346,6 +352,9 @@ public:
     /*! @brief Default move constructor. */
     basic_continuous_loader(basic_continuous_loader &&) noexcept = default;
 
+    /*! @brief Default destructor. */
+    ~basic_continuous_loader() noexcept = default;
+
     /*! @brief Default move assignment operator. @return This loader. */
     basic_continuous_loader &operator=(basic_continuous_loader &&) noexcept = default;