Răsfoiți Sursa

view: avoid unnecessary parameter pack

Michele Caini 3 ani în urmă
părinte
comite
88db623dc1
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  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.
      * @return The storage for the given component type.
      */
-    template<typename... Comp>
+    template<typename Comp = Component>
     [[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);
     }