diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 15:45:41 -0800 |
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-27 15:45:41 -0800 |
| commit | 9e2ba40d13cd03525ce137435fd817a55758bc8c (patch) | |
| tree | f9ad7072c50b09fb048994b6f9254c05e3f1fce9 | |
| parent | a7c3fde789b0f15f0ccf650e59dc352451fc4e4a (diff) | |
less dumb partial fix for CID-219
| -rw-r--r-- | indra/llcommon/lldate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lldate.cpp b/indra/llcommon/lldate.cpp index e3323fcfbf..de7f2ead74 100644 --- a/indra/llcommon/lldate.cpp +++ b/indra/llcommon/lldate.cpp @@ -153,7 +153,7 @@ void LLDate::toStream(std::ostream& s) const << (int)(exp_time.tm_usec / (LL_APR_USEC_PER_SEC / 100)); } s << 'Z' - << setfill(' '); + << std::setfill(' '); } bool LLDate::split(S32 *year, S32 *month, S32 *day, S32 *hour, S32 *min, S32 *sec) const |
