InputCommon: Make InputDetector::Start take a span instead of a vector.

This commit is contained in:
Jordan Woyak
2025-06-07 15:28:52 -05:00
parent 11c3f7ea8d
commit 0780458069
3 changed files with 5 additions and 3 deletions

View File

@ -391,7 +391,7 @@ InputDetector::InputDetector() : m_start_time{}, m_state{}
}
void InputDetector::Start(const DeviceContainer& container,
const std::vector<std::string>& device_strings)
std::span<const std::string> device_strings)
{
m_start_time = Clock::now();