diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/k_session_request.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_session_request.h b/src/core/hle/kernel/k_session_request.h index 5a43933cf..42b1207f0 100644 --- a/src/core/hle/kernel/k_session_request.h +++ b/src/core/hle/kernel/k_session_request.h | |||
| @@ -3,6 +3,8 @@ | |||
| 3 | 3 | ||
| 4 | #pragma once | 4 | #pragma once |
| 5 | 5 | ||
| 6 | #include <array> | ||
| 7 | |||
| 6 | #include "core/hle/kernel/k_auto_object.h" | 8 | #include "core/hle/kernel/k_auto_object.h" |
| 7 | #include "core/hle/kernel/k_event.h" | 9 | #include "core/hle/kernel/k_event.h" |
| 8 | #include "core/hle/kernel/k_memory_block.h" | 10 | #include "core/hle/kernel/k_memory_block.h" |
| @@ -148,7 +150,7 @@ public: | |||
| 148 | 150 | ||
| 149 | private: | 151 | private: |
| 150 | KernelCore& kernel; | 152 | KernelCore& kernel; |
| 151 | Mapping m_static_mappings[NumStaticMappings]; | 153 | std::array<Mapping, NumStaticMappings> m_static_mappings; |
| 152 | Mapping* m_mappings{}; | 154 | Mapping* m_mappings{}; |
| 153 | u8 m_num_send{}; | 155 | u8 m_num_send{}; |
| 154 | u8 m_num_recv{}; | 156 | u8 m_num_recv{}; |