Sfoglia il codice sorgente

storage: remove redundant typename keyword

Michele Caini 3 anni fa
parent
commit
3f09d47c81
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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) {