mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-06 09:58:41 +02:00
API: Legacy: Remove unused variable
This commit is contained in:
@@ -607,9 +607,8 @@ int LegacyDLLExport icsneoOpenNeoDevice(NeoDevice *pNeoDevice, void **hObject, u
|
|||||||
{
|
{
|
||||||
device = &neodevices.at(uint64_t(pNeoDevice->Handle) << 32 | pNeoDevice->SerialNumber);
|
device = &neodevices.at(uint64_t(pNeoDevice->Handle) << 32 | pNeoDevice->SerialNumber);
|
||||||
}
|
}
|
||||||
catch (std::out_of_range &e)
|
catch (const std::out_of_range&)
|
||||||
{
|
{
|
||||||
(void)e; // Unused
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user