Spaces to tab
This commit is contained in:
parent
b74a02cb21
commit
54c0b616b1
|
@ -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;
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue