diff options
author | Zephyron <zephyron@citron-emu.org> | 2025-02-08 20:24:09 +1000 |
---|---|---|
committer | Zephyron <zephyron@citron-emu.org> | 2025-02-08 20:24:09 +1000 |
commit | 4792ba752ec484af3a75a64bab84db352d42b662 (patch) | |
tree | fd2de2d9d792c949d471a5da8e4ebf7869ced052 /src | |
parent | b8fe6b6f7c1c1729f1aaf987691d948f67b014c6 (diff) |
service/mm: add missing vector include and update copyright
- Add missing <vector> include for std::vector usage
- Add Citron copyright notice
- Maintain existing include ordering
This is a minor cleanup change to ensure proper header inclusion
and copyright attribution.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/mm/mm_u.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/mm/mm_u.cpp b/src/core/hle/service/mm/mm_u.cpp index a99c01286..5b4cd18e9 100644 --- a/src/core/hle/service/mm/mm_u.cpp +++ b/src/core/hle/service/mm/mm_u.cpp @@ -3,6 +3,7 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include <algorithm> +#include <vector> #include "common/logging/log.h" #include "core/hle/service/ipc_helpers.h" #include "core/hle/service/mm/mm_u.h" |