1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-06 05:12:21 +01:00

Merge branch 'pb_dump' into integration

This commit is contained in:
J. Nick Koston
2025-07-22 09:21:32 -10:00
2 changed files with 0 additions and 14 deletions

View File

@@ -64,13 +64,6 @@ static void dump_field(std::string &out, const char *field_name, float value, in
append_with_newline(out, buffer);
}
static void dump_field(std::string &out, const char *field_name, double value, int indent = 2) {
char buffer[64];
append_field_prefix(out, field_name, indent);
snprintf(buffer, 64, "%g", value);
append_with_newline(out, buffer);
}
static void dump_field(std::string &out, const char *field_name, uint64_t value, int indent = 2) {
char buffer[64];
append_field_prefix(out, field_name, indent);

View File

@@ -2132,13 +2132,6 @@ static void dump_field(std::string &out, const char *field_name, float value, in
append_with_newline(out, buffer);
}
static void dump_field(std::string &out, const char *field_name, double value, int indent = 2) {
char buffer[64];
append_field_prefix(out, field_name, indent);
snprintf(buffer, 64, "%g", value);
append_with_newline(out, buffer);
}
static void dump_field(std::string &out, const char *field_name, uint64_t value, int indent = 2) {
char buffer[64];
append_field_prefix(out, field_name, indent);