Browse Source

Add includes for std::setw (#26153)

Joel Challis 3 months ago
parent
commit
1daa191e09

+ 1 - 0
tests/test_common/keyboard_report_util.cpp

@@ -18,6 +18,7 @@
 #include <cstdint>
 #include <vector>
 #include <algorithm>
+#include <iomanip>
 
 extern "C" {
 #include "keycode_string.h"

+ 1 - 0
tests/test_common/mouse_report_util.cpp

@@ -18,6 +18,7 @@
 #include <cstdint>
 #include <vector>
 #include <algorithm>
+#include <iomanip>
 
 using namespace testing;
 

+ 1 - 0
tests/test_common/test_driver.cpp

@@ -15,6 +15,7 @@
  */
 
 #include "test_driver.hpp"
+#include <iomanip>
 
 TestDriver* TestDriver::m_this = nullptr;
 

+ 1 - 0
tests/test_common/test_keymap_key.cpp

@@ -15,6 +15,7 @@
  */
 
 #include "test_keymap_key.hpp"
+#include <iomanip>
 #include <cstdint>
 #include <ios>
 #include "matrix.h"