Browse Source

storage: remove redundant typename keyword

Michele Caini 3 years ago
parent
commit
3f09d47c81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/entt/entity/storage.hpp

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

@@ -1109,7 +1109,7 @@ public:
      * @return The number of elements within the newly created range.
      */
     template<typename It>
-    typename size_type pack(It first, It last) {
+    size_type pack(It first, It last) {
         size_type next = length;
 
         for(; first != last; ++first, --next) {