auto-formatting

This commit is contained in:
Proddy
2022-06-25 14:25:31 +02:00
parent 2c90a2c3aa
commit 4af1de4093
3 changed files with 3 additions and 3 deletions

View File

@@ -45,7 +45,7 @@ class AnalogSensor {
std::string name() const; std::string name() const;
void set_name(const std::string & name) { void set_name(const std::string & name) {
name_ = name; name_ = name;
} }
uint8_t gpio() const { uint8_t gpio() const {

View File

@@ -57,7 +57,7 @@ class DallasSensor {
std::string name() const; std::string name() const;
void set_name(const std::string & name) { void set_name(const std::string & name) {
name_ = name; name_ = name;
} }
bool apply_customization(); bool apply_customization();

View File

@@ -191,7 +191,7 @@ class System {
#ifndef EMSESP_STANDALONE #ifndef EMSESP_STANDALONE
return (ethernet_connected() || WiFi.isConnected()); return (ethernet_connected() || WiFi.isConnected());
#else #else
return true; return true;
#endif #endif
} }