Skip to content
Snippets Groups Projects
Commit 9e2ba40d authored by Tofu Linden's avatar Tofu Linden
Browse files

less dumb partial fix for CID-219

parent a7c3fde7
No related branches found
No related tags found
No related merge requests found
...@@ -153,7 +153,7 @@ void LLDate::toStream(std::ostream& s) const ...@@ -153,7 +153,7 @@ void LLDate::toStream(std::ostream& s) const
<< (int)(exp_time.tm_usec / (LL_APR_USEC_PER_SEC / 100)); << (int)(exp_time.tm_usec / (LL_APR_USEC_PER_SEC / 100));
} }
s << 'Z' s << 'Z'
<< setfill(' '); << std::setfill(' ');
} }
bool LLDate::split(S32 *year, S32 *month, S32 *day, S32 *hour, S32 *min, S32 *sec) const bool LLDate::split(S32 *year, S32 *month, S32 *day, S32 *hour, S32 *min, S32 *sec) const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment