summaryrefslogtreecommitdiff
path: root/src/KingSystem/ActorSystem/actBaseProcJobQue.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2022-02-08 21:34:53 +0100
committerLéo Lam <leo@leolam.fr>2022-02-08 22:11:09 +0100
commitd893fd5ead7e1061cad38d25d517e1738d383a09 (patch)
treef9b3240f632a67ebb9af2a0dbe764f23a3ff00e7 /src/KingSystem/ActorSystem/actBaseProcJobQue.cpp
parentd3902a9ad4a7785545ea4b7dc94fa9b5929400c0 (diff)
Remove unnecessary usages of sead::StorageFor
Turns out they are just value-initialised aggregates.
Diffstat (limited to 'src/KingSystem/ActorSystem/actBaseProcJobQue.cpp')
-rw-r--r--src/KingSystem/ActorSystem/actBaseProcJobQue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/KingSystem/ActorSystem/actBaseProcJobQue.cpp b/src/KingSystem/ActorSystem/actBaseProcJobQue.cpp
index 6803f6bd..b9cc7c04 100644
--- a/src/KingSystem/ActorSystem/actBaseProcJobQue.cpp
+++ b/src/KingSystem/ActorSystem/actBaseProcJobQue.cpp
@@ -4,7 +4,7 @@
namespace ksys::act {
-BaseProcJobQue::BaseProcJobQue() = default;
+BaseProcJobQue::BaseProcJobQue() : mPool() {}
BaseProcJobQue::~BaseProcJobQue() {
mJobQueue.clear();