Spaces to tab

This commit is contained in:
Iván Pérez 2016-09-12 09:00:04 +02:00
parent 4650c2c3d8
commit 24cba16802
4 changed files with 8 additions and 8 deletions

View File

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

View File

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

View File

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

View File

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