File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 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
745745
746746double String::toDouble (void ) const
747747{
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
190190 // parsing/conversion
191191 long toInt (void ) const ;
192192 float toFloat (void ) const ;
193- double toDouble (void ) const ;
193+ double toDouble (void ) const ;
194194
195195protected:
196196 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
747747
748748double 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+ }
Original file line number Diff line number Diff 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
195195protected:
196196 char *buffer; // the actual char array
You can’t perform that action at this time.
0 commit comments