diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-05-08 18:01:10 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-05-23 15:23:11 +0200 |
| commit | 3e8ac6af9a993e262d1160fb2e6e1e1f1d5d19f2 (patch) | |
| tree | d6b1b2b531923e73bc5142693009d38b4a628d1a /src/util.h | |
| parent | Replace non-threadsafe strerror (diff) | |
| download | discoin-3e8ac6af9a993e262d1160fb2e6e1e1f1d5d19f2.tar.xz discoin-3e8ac6af9a993e262d1160fb2e6e1e1f1d5d19f2.zip | |
Replace non-threadsafe gmtime and setlocale
Make DateTimeStrFormat use boost::posix_time.
Also re-enable the util_DateTimeStrFormat tests, as they are no
longer platform specific.
Diffstat (limited to 'src/util.h')
| -rw-r--r-- | src/util.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/util.h b/src/util.h index 97185073e..9e899b508 100644 --- a/src/util.h +++ b/src/util.h @@ -325,14 +325,7 @@ inline int64_t GetTimeMicros() boost::posix_time::ptime(boost::gregorian::date(1970,1,1))).total_microseconds(); } -inline std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime) -{ - time_t n = nTime; - struct tm* ptmTime = gmtime(&n); - char pszTime[200]; - strftime(pszTime, sizeof(pszTime), pszFormat, ptmTime); - return pszTime; -} +std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime); inline bool IsSwitchChar(char c) { |