skypjack пре 3 месеци
родитељ
комит
c8c5905913
2 измењених фајлова са 2 додато и 2 уклоњено
  1. 1 1
      test/entt/process/process.cpp
  2. 1 1
      test/entt/process/scheduler.cpp

+ 1 - 1
test/entt/process/process.cpp

@@ -45,7 +45,7 @@ public:
 };
 
 class test_plain_process: public entt::process {
-    using delta_type = typename entt::process::delta_type;
+    using delta_type = entt::process::delta_type;
     void update(const delta_type, void *) override {}
 };
 

+ 1 - 1
test/entt/process/scheduler.cpp

@@ -16,7 +16,7 @@ class foo_process: public entt::process {
     }
 
 public:
-    using allocator_type = typename entt::process::allocator_type;
+    using allocator_type = entt::process::allocator_type;
 
     foo_process(const allocator_type &allocator, std::function<void()> upd, std::function<void()> abort)
         : entt::process{allocator},