Quellcode durchsuchen

view: avoid unnecessary parameter pack

Michele Caini vor 3 Jahren
Ursprung
Commit
88db623dc1
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  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);
     }
     }