diff options
author | Richard Linden <none@none> | 2012-11-07 15:32:12 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-11-07 15:32:12 -0800 |
commit | ed17c181dd37f56b808838748d289ee7bb5567ec (patch) | |
tree | f942d7b006510efea8b2626fdba41a575079ccdf /indra/llcommon/lldate.cpp | |
parent | 9d70448a1275b80a829e16b6d08d29919748c823 (diff) |
SH-3499 WIP Ensure asset stats output is correct
further fixes to implicit conversion of unit types
Diffstat (limited to 'indra/llcommon/lldate.cpp')
-rw-r--r-- | indra/llcommon/lldate.cpp | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/indra/llcommon/lldate.cpp b/indra/llcommon/lldate.cpp index 030ef6a3c7..d8b3dfe6c6 100644 --- a/indra/llcommon/lldate.cpp +++ b/indra/llcommon/lldate.cpp @@ -48,18 +48,15 @@ static const F64 LL_APR_USEC_PER_SEC = 1000000.0; LLDate::LLDate() : mSecondsSinceEpoch(DATE_EPOCH) -{ -} +{} LLDate::LLDate(const LLDate& date) : mSecondsSinceEpoch(date.mSecondsSinceEpoch) -{ -} +{} -LLDate::LLDate(F64 seconds_since_epoch) : +LLDate::LLDate(LLUnit::Seconds<F64> seconds_since_epoch) : mSecondsSinceEpoch(seconds_since_epoch) -{ -} +{} LLDate::LLDate(const std::string& iso8601_date) { |