From 1daa191e09d7ca6c3418d09eb7c267ae2dbb12f1 Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Thu, 16 Apr 2026 00:38:42 +0100 Subject: [PATCH] Add includes for std::setw (#26153) --- tests/test_common/keyboard_report_util.cpp | 1 + tests/test_common/mouse_report_util.cpp | 1 + tests/test_common/test_driver.cpp | 1 + tests/test_common/test_keymap_key.cpp | 1 + 4 files changed, 4 insertions(+) diff --git a/tests/test_common/keyboard_report_util.cpp b/tests/test_common/keyboard_report_util.cpp index 5e40323669f..dea61efcd11 100644 --- a/tests/test_common/keyboard_report_util.cpp +++ b/tests/test_common/keyboard_report_util.cpp @@ -18,6 +18,7 @@ #include #include #include +#include extern "C" { #include "keycode_string.h" diff --git a/tests/test_common/mouse_report_util.cpp b/tests/test_common/mouse_report_util.cpp index 60cdeced24f..948b3c11213 100644 --- a/tests/test_common/mouse_report_util.cpp +++ b/tests/test_common/mouse_report_util.cpp @@ -18,6 +18,7 @@ #include #include #include +#include using namespace testing; diff --git a/tests/test_common/test_driver.cpp b/tests/test_common/test_driver.cpp index 70b920ac86a..2ab692256b2 100644 --- a/tests/test_common/test_driver.cpp +++ b/tests/test_common/test_driver.cpp @@ -15,6 +15,7 @@ */ #include "test_driver.hpp" +#include TestDriver* TestDriver::m_this = nullptr; diff --git a/tests/test_common/test_keymap_key.cpp b/tests/test_common/test_keymap_key.cpp index 63ae29975b5..3435382c04a 100644 --- a/tests/test_common/test_keymap_key.cpp +++ b/tests/test_common/test_keymap_key.cpp @@ -15,6 +15,7 @@ */ #include "test_keymap_key.hpp" +#include #include #include #include "matrix.h"