Skip to content

Commit 24cba16

Browse files
committed
Spaces to tab
1 parent 4650c2c commit 24cba16

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
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

hardware/arduino/sam/cores/arduino/WString.cpp

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

748748
double String::toDouble(void) const
749749
{
750-
if (buffer) return atof(buffer);
751-
return 0;
752-
}
750+
if (buffer) return atof(buffer);
751+
return 0;
752+
}

hardware/arduino/sam/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)