summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/CoreDevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/CoreDevice.h')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/CoreDevice.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h
index 5318a102f9..c8be0aeb65 100644
--- a/Source/Core/InputCommon/ControllerInterface/CoreDevice.h
+++ b/Source/Core/InputCommon/ControllerInterface/CoreDevice.h
@@ -8,6 +8,7 @@
#include <memory>
#include <mutex>
#include <optional>
+#include <span>
#include <string>
#include <string_view>
#include <vector>
@@ -255,7 +256,7 @@ public:
InputDetector();
~InputDetector();
- void Start(const DeviceContainer& container, const std::vector<std::string>& device_strings);
+ void Start(const DeviceContainer& container, std::span<const std::string> device_strings);
void Update(std::chrono::milliseconds initial_wait, std::chrono::milliseconds confirmation_wait,
std::chrono::milliseconds maximum_wait);
bool IsComplete() const;