Browse Source

group: implicit noexcept specification

Michele Caini 1 year ago
parent
commit
80f12a7ac2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/entt/entity/group.hpp

+ 1 - 1
src/entt/entity/group.hpp

@@ -93,7 +93,7 @@ template<typename... Lhs, typename... Rhs>
 
 struct group_descriptor {
     using size_type = std::size_t;
-    virtual ~group_descriptor() noexcept(false) = default;
+    virtual ~group_descriptor() = default;
     [[nodiscard]] virtual bool owned(const id_type) const noexcept {
         return false;
     }