chore(deps): bump libdisplaydevice (#5280)

This commit is contained in:
David Lane
2026-06-10 23:10:53 -04:00
committed by GitHub
parent c2b5513a5f
commit 6fcb048795
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -655,7 +655,7 @@ namespace display_device {
scheduler_option.m_execution = SchedulerOptions::Execution::ScheduledOnly;
}
DD_DATA.sm_instance->schedule([try_once = (option == revert_option_e::try_once), tried_out_devices = std::set<std::string> {}](auto &settings_iface, auto &stop_token) mutable {
DD_DATA.sm_instance->schedule([try_once = (option == revert_option_e::try_once), tried_out_devices = StringSet {}](auto &settings_iface, auto &stop_token) mutable {
if (try_once) {
std::ignore = settings_iface.revertSettings();
stop_token.requestStop();
@@ -664,7 +664,7 @@ namespace display_device {
auto available_devices {[&settings_iface]() {
const auto devices {settings_iface.enumAvailableDevices()};
std::set<std::string> parsed_devices;
StringSet parsed_devices;
std::transform(
std::begin(devices),