Просмотр исходного кода

Add missing includes (#6521)

* Add missing includes

* Add array
Chloe 5 лет назад
Родитель
Сommit
f216a9432b

+ 2 - 0
src/audio_core/sink_context.h

@@ -4,6 +4,8 @@
 
 
 #pragma once
 #pragma once
 
 
+#include <array>
+#include <vector>
 #include "audio_core/common.h"
 #include "audio_core/common.h"
 #include "common/common_funcs.h"
 #include "common/common_funcs.h"
 #include "common/common_types.h"
 #include "common/common_types.h"

+ 2 - 0
src/core/hle/service/mii/manager.h

@@ -4,6 +4,8 @@
 
 
 #pragma once
 #pragma once
 
 
+#include <array>
+#include <vector>
 #include "common/bit_field.h"
 #include "common/bit_field.h"
 #include "common/common_funcs.h"
 #include "common/common_funcs.h"
 #include "common/uuid.h"
 #include "common/uuid.h"

+ 2 - 0
src/input_common/mouse/mouse_poller.cpp

@@ -2,6 +2,8 @@
 // Licensed under GPLv2 or any later version
 // Licensed under GPLv2 or any later version
 // Refer to the license.txt file included.
 // Refer to the license.txt file included.
 
 
+#include <algorithm>
+#include <memory>
 #include <mutex>
 #include <mutex>
 #include <utility>
 #include <utility>
 
 

+ 1 - 0
src/input_common/touch_from_button.cpp

@@ -2,6 +2,7 @@
 // Licensed under GPLv2 or any later version
 // Licensed under GPLv2 or any later version
 // Refer to the license.txt file included.
 // Refer to the license.txt file included.
 
 
+#include <algorithm>
 #include "common/settings.h"
 #include "common/settings.h"
 #include "core/frontend/framebuffer_layout.h"
 #include "core/frontend/framebuffer_layout.h"
 #include "input_common/touch_from_button.h"
 #include "input_common/touch_from_button.h"