File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -745,6 +745,6 @@ float String::toFloat(void) const
745
745
746
746
double String::toDouble (void ) const
747
747
{
748
- if (buffer) return atof (buffer);
749
- return 0 ;
750
- }
748
+ if (buffer) return atof (buffer);
749
+ return 0 ;
750
+ }
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ class String
190
190
// parsing/conversion
191
191
long toInt (void ) const ;
192
192
float toFloat (void ) const ;
193
- double toDouble (void ) const ;
193
+ double toDouble (void ) const ;
194
194
195
195
protected:
196
196
char *buffer; // the actual char array
Original file line number Diff line number Diff line change @@ -747,6 +747,6 @@ float String::toFloat(void) const
747
747
748
748
double String::toDouble (void ) const
749
749
{
750
- if (buffer) return atof (buffer);
751
- return 0 ;
752
- }
750
+ if (buffer) return atof (buffer);
751
+ return 0 ;
752
+ }
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ class String
190
190
// parsing/conversion
191
191
long toInt (void ) const ;
192
192
float toFloat (void ) const ;
193
- double toDouble (void ) const ;
193
+ double toDouble (void ) const ;
194
194
195
195
protected:
196
196
char *buffer; // the actual char array
You can’t perform that action at this time.
0 commit comments