From 4792ba752ec484af3a75a64bab84db352d42b662 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Sat, 8 Feb 2025 20:24:09 +1000 Subject: [PATCH] service/mm: add missing vector include and update copyright - Add missing 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. --- src/core/hle/service/mm/mm_u.cpp | 1 + 1 file changed, 1 insertion(+) 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 +#include #include "common/logging/log.h" #include "core/hle/service/ipc_helpers.h" #include "core/hle/service/mm/mm_u.h"