Skip to content
Prev Previous commit
Next Next commit
avoid multiple definitions for a simple alias
  • Loading branch information
d-a-v committed Jan 9, 2020
commit ae2a37df261ebcd725f70b7fbb787de2758a05c4
2 changes: 1 addition & 1 deletion cores/esp8266/Arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ void configTime(const char* tz, const char* server1,
const char* server2 = nullptr, const char* server3 = nullptr);

// esp32 api compatibility
void configTzTime(const char* tz, const char* server1,
inline void configTzTime(const char* tz, const char* server1,
const char* server2 = nullptr, const char* server3 = nullptr)
{
configTime(tz, server1, server2, server3);
Expand Down