Browse Source

view: avoid unnecessary parameter pack

Michele Caini 4 năm trước cách đây
mục cha
commit
88db623dc1
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      src/entt/entity/view.hpp

+ 2 - 2
src/entt/entity/view.hpp

@@ -577,9 +577,9 @@ public:
      * @tparam Comp Type of component of which to return the storage.
      * @tparam Comp Type of component of which to return the storage.
      * @return The storage for the given component type.
      * @return The storage for the given component type.
      */
      */
-    template<typename... Comp>
+    template<typename Comp = Component>
     [[nodiscard]] decltype(auto) storage() const ENTT_NOEXCEPT {
     [[nodiscard]] decltype(auto) storage() const ENTT_NOEXCEPT {
-        static_assert((std::is_same_v<Comp, Component> && ...), "Invalid component type");
+        static_assert(std::is_same_v<Comp, Component>, "Invalid component type");
         return *std::get<0>(pools);
         return *std::get<0>(pools);
     }
     }