Skip to content

Commit

Permalink
Fix build.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpd002 committed Jun 13, 2024
1 parent cb6ddde commit 1524bbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/iop/Iop_Usbd.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace Iop
template <typename DeviceType>
DeviceType* GetDevice()
{
auto& devicePairIterator = m_devices.find(DeviceType::DEVICE_ID);
auto devicePairIterator = m_devices.find(DeviceType::DEVICE_ID);
if(devicePairIterator == std::end(m_devices))
{
return nullptr;
Expand Down

0 comments on commit 1524bbc

Please sign in to comment.