mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-09-21 01:45:25 -04:00
Fix warning in PhilipsHueSettingsHandler.cpp
This commit is contained in:
1 parent
6ac3fae951
commit
116a031c6d
2 files changed
+3
-2
No files matched your search
@@ -30,7 +30,7 @@ PhilipsHueSettingsHandler::~PhilipsHueSettingsHandler()
|
||||
delete (hue_settings_type *)hue_settings;
|
||||
}
|
||||
|
||||
unsigned int PhilipsHueSettingsHandler::GetBridgeCount()
|
||||
std::size_t PhilipsHueSettingsHandler::GetBridgeCount()
|
||||
{
|
||||
if(HUE_SETTINGS.contains("bridges"))
|
||||
{
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <cstddef>
|
||||
#include <string>
|
||||
|
||||
class PhilipsHueSettingsHandler
|
||||
@@ -22,7 +23,7 @@ public:
|
||||
PhilipsHueSettingsHandler();
|
||||
~PhilipsHueSettingsHandler();
|
||||
|
||||
unsigned int GetBridgeCount();
|
||||
std::size_t GetBridgeCount();
|
||||
|
||||
std::string GetBridgeIP(unsigned int bridge_idx);
|
||||
std::string GetBridgeMAC(unsigned int bridge_idx);
|
||||
|
||||
Reference in new issue
Block a user