Fix warnings in CorsairPeripheralV2Controller
This commit is contained in:
parent
e51b4ce324
commit
b84ca30a14
2 changed files with 2 additions and 2 deletions
|
|
@ -65,7 +65,7 @@ class CorsairPeripheralV2Controller
|
|||
{
|
||||
public:
|
||||
CorsairPeripheralV2Controller(hid_device* dev_handle, const char* path, std::string name, uint16_t pid);
|
||||
~CorsairPeripheralV2Controller();
|
||||
virtual ~CorsairPeripheralV2Controller();
|
||||
|
||||
std::string GetDeviceLocation();
|
||||
std::string GetFirmwareString();
|
||||
|
|
|
|||
|
|
@ -103,5 +103,5 @@ const corsair_v2_device* corsair_v2_device_list_data[] =
|
|||
&mm700_device,
|
||||
};
|
||||
|
||||
const unsigned int CORSAIR_V2_DEVICE_COUNT = (sizeof(corsair_v2_device_list) / sizeof(corsair_v2_device_list[ 0 ]));
|
||||
const unsigned int CORSAIR_V2_DEVICE_COUNT = (sizeof(corsair_v2_device_list_data) / sizeof(corsair_v2_device_list_data[ 0 ]));
|
||||
const corsair_v2_device** corsair_v2_device_list = corsair_v2_device_list_data;
|
||||
Loading…
Add table
Add a link
Reference in a new issue