diff options
author | Francesco Borzì <borzifrancesco@gmail.com> | 2024-07-31 09:10:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 09:10:12 +0200 |
commit | 8cfb3383287ba42d69c4a7139026090bc5184bb7 (patch) | |
tree | 78864f3bc9ce792e227f67ea9d8af82a2f3204f8 /src/common | |
parent | 02a05fbd4c640b33b1e03075681f169db2fb6ab2 (diff) |
fix(Core/Common): add missing import (#19535)
* fix(Core/Common): add missing import
* chore: fix mistake
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/Threading/MPSCQueue.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/Threading/MPSCQueue.h b/src/common/Threading/MPSCQueue.h index 15176178b0..41d49ba14a 100644 --- a/src/common/Threading/MPSCQueue.h +++ b/src/common/Threading/MPSCQueue.h @@ -19,6 +19,7 @@ #define MPSCQueue_h__ #include <atomic> +#include <memory> namespace Acore::Impl { |