summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/k_shared_memory_info.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-05-01 15:27:23 +0200
committerGitHub <noreply@github.com>2023-05-01 15:27:23 +0200
commit3f4315e4c690f667ae6da96a92be7ab4a20dc847 (patch)
treee61b7d7cf7b734d28e4fb257485cb2875c8e042d /src/core/hle/kernel/k_shared_memory_info.h
parentMerge pull request #10110 from Morph1984/intel-disable-compute (diff)
parentkernel: remove general boost lists (diff)
downloadyuzu-3f4315e4c690f667ae6da96a92be7ab4a20dc847.tar
yuzu-3f4315e4c690f667ae6da96a92be7ab4a20dc847.tar.gz
yuzu-3f4315e4c690f667ae6da96a92be7ab4a20dc847.tar.bz2
yuzu-3f4315e4c690f667ae6da96a92be7ab4a20dc847.tar.lz
yuzu-3f4315e4c690f667ae6da96a92be7ab4a20dc847.tar.xz
yuzu-3f4315e4c690f667ae6da96a92be7ab4a20dc847.tar.zst
yuzu-3f4315e4c690f667ae6da96a92be7ab4a20dc847.zip
Diffstat (limited to 'src/core/hle/kernel/k_shared_memory_info.h')
-rw-r--r--src/core/hle/kernel/k_shared_memory_info.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_shared_memory_info.h b/src/core/hle/kernel/k_shared_memory_info.h
index 75b73ba39..2d8ff20d6 100644
--- a/src/core/hle/kernel/k_shared_memory_info.h
+++ b/src/core/hle/kernel/k_shared_memory_info.h
@@ -3,7 +3,7 @@
#pragma once
-#include <boost/intrusive/list.hpp>
+#include "common/intrusive_list.h"
#include "core/hle/kernel/slab_helpers.h"
@@ -12,7 +12,7 @@ namespace Kernel {
class KSharedMemory;
class KSharedMemoryInfo final : public KSlabAllocated<KSharedMemoryInfo>,
- public boost::intrusive::list_base_hook<> {
+ public Common::IntrusiveListBaseNode<KSharedMemoryInfo> {
public:
explicit KSharedMemoryInfo(KernelCore&) {}