a double is not helpful here.

This commit is contained in:
Mathieu Lacage
2010-08-07 19:50:38 +02:00
parent 7b20c3aaae
commit 16e9611233

View File

@@ -165,7 +165,7 @@ operator<< (std::ostream& os, const Time & time)
unit = "unreachable";
break;
}
double v = Time::ToDouble (time, Time::GetResolution ());
uint64_t v = Time::ToInteger (time, Time::GetResolution ());
os << v << unit;
return os;
}