فهرست منبع

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) {