File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ <wpf : ResourceDictionary xml : space =" preserve" xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml" xmlns : s =" clr-namespace:System;assembly=mscorlib" xmlns : ss =" urn:shemas-jetbrains-com:settings-storage-xaml" xmlns : wpf =" http://schemas.microsoft.com/winfx/2006/xaml/presentation" >
2+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=APPICON/@EntryIndexedValue" >True</s : Boolean >
3+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=deadzone/@EntryIndexedValue" >True</s : Boolean >
4+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=DIRECTINPUT/@EntryIndexedValue" >True</s : Boolean >
5+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=DUALSENSE/@EntryIndexedValue" >True</s : Boolean >
6+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=DUALSHOCK/@EntryIndexedValue" >True</s : Boolean >
7+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=libusb/@EntryIndexedValue" >True</s : Boolean >
8+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=libusbk/@EntryIndexedValue" >True</s : Boolean >
9+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=Libwdi/@EntryIndexedValue" >True</s : Boolean >
10+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=PHIDP/@EntryIndexedValue" >True</s : Boolean >
11+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=RAWHID/@EntryIndexedValue" >True</s : Boolean >
12+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=xinput/@EntryIndexedValue" >True</s : Boolean >
13+ <s : Boolean x : Key =" /Default/UserDictionary/Words/=Zadig/@EntryIndexedValue" >True</s : Boolean ></wpf : ResourceDictionary >
Original file line number Diff line number Diff line change @@ -352,8 +352,8 @@ LibwdiUsbProbeResult ProbeLibwdiUsbDevices()
352352 SetupDiDestroyDeviceInfoList (devInfoSet);
353353 }
354354
355- std::sort (found. begin (), found. end () );
356- found.erase (std::unique (found.begin (), found. end () ), found.end ());
355+ std::ranges:: sort (found);
356+ found.erase (std::ranges:: unique (found) .begin (), found.end ());
357357 result.instanceIds = std::move (found);
358358 result.succeeded = true ;
359359 result.errorMessage .clear ();
You can’t perform that action at this time.
0 commit comments