Skip to content

Commit 0faf83a

Browse files
committed
Spaces to tab
1 parent 5d459d0 commit 0faf83a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

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)