소스 검색

storage: remove redundant typename keyword

Michele Caini 3 년 전
부모
커밋
3f09d47c81
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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) {