*** empty log message ***

This commit is contained in:
David Rose 2001-03-23 01:17:20 +00:00
parent 121fb2faa3
commit d2a9717904
1 changed files with 2 additions and 1 deletions

View File

@ -238,8 +238,9 @@ format_default_value(double num, string &formatted) const {
{
// Reverse the byte ordering for big-endian machines.
string str;
str = reserve(8);
str.reserve(8);
int length = str.length();
for (size_t i = 0; i < 8; i++) {
str += formatted[length - 1 - i];
}