| Index: runtime/vm/double_conversion.h
|
| diff --git a/runtime/vm/double_conversion.h b/runtime/vm/double_conversion.h
|
| index a8f91114a055f819c02f949fd517e4369c67edfa..c4f584d4fc4719b22eab02c71f29103595aa8d85 100644
|
| --- a/runtime/vm/double_conversion.h
|
| +++ b/runtime/vm/double_conversion.h
|
| @@ -10,10 +10,10 @@
|
|
|
| namespace dart {
|
|
|
| -bool DoubleToString(double d, String& result);
|
| -bool DoubleToStringAsFixed(double d, int fraction_digits, String& result);
|
| -bool DoubleToStringAsExponential(double d, int fraction_digits, String& result);
|
| -bool DoubleToStringAsPrecision(double d, int precision, String& result);
|
| +void DoubleToCString(double d, char* buffer, int buffer_size);
|
| +RawString* DoubleToStringAsFixed(double d, int fraction_digits);
|
| +RawString* DoubleToStringAsExponential(double d, int fraction_digits);
|
| +RawString* DoubleToStringAsPrecision(double d, int precision);
|
|
|
| } // namespace dart
|
|
|
|
|