Skip to content

Commit a8fddb1

Browse files
committed
Spaces to tab
1 parent 2c26660 commit a8fddb1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

hardware/arduino/avr/cores/arduino/WString.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -745,6 +745,6 @@ float String::toFloat(void) const
745745

746746
double String::toDouble(void) const
747747
{
748-
if (buffer) return atof(buffer);
749-
return 0;
750-
}
748+
if (buffer) return atof(buffer);
749+
return 0;
750+
}

hardware/arduino/avr/cores/arduino/WString.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ class String
190190
// parsing/conversion
191191
long toInt(void) const;
192192
float toFloat(void) const;
193-
double toDouble(void) const;
193+
double toDouble(void) const;
194194

195195
protected:
196196
char *buffer; // the actual char array

0 commit comments

Comments
 (0)