Spaces to tab

This commit is contained in:
Iván Pérez 2016-09-12 09:00:04 +02:00
parent b74a02cb21
commit 54c0b616b1
2 changed files with 4 additions and 4 deletions

View File

@ -745,6 +745,6 @@ float String::toFloat(void) const
double String::toDouble(void) const double String::toDouble(void) const
{ {
if (buffer) return atof(buffer); if (buffer) return atof(buffer);
return 0; return 0;
} }

View File

@ -190,7 +190,7 @@ public:
// parsing/conversion // parsing/conversion
long toInt(void) const; long toInt(void) const;
float toFloat(void) const; float toFloat(void) const;
double toDouble(void) const; double toDouble(void) const;
protected: protected:
char *buffer; // the actual char array char *buffer; // the actual char array