cppcheck fixes

This commit is contained in:
Peter Buchegger 2021-01-03 00:15:08 +01:00
parent 47a4455145
commit 32a201b980
6 changed files with 24 additions and 20 deletions

View file

@ -28,11 +28,11 @@ class NTPClient {
public:
NTPClient();
NTPClient(long timeOffset);
NTPClient(const char* poolServerName);
explicit NTPClient(long timeOffset);
explicit NTPClient(const char* poolServerName);
NTPClient(const char* poolServerName, long timeOffset);
NTPClient(const char* poolServerName, long timeOffset, unsigned long updateInterval);
NTPClient(IPAddress poolServerIP);
explicit NTPClient(IPAddress poolServerIP);
NTPClient(IPAddress poolServerIP, long timeOffset);
NTPClient(IPAddress poolServerIP, long timeOffset, unsigned long updateInterval);