mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-24 07:51:24 +02:00
Merge #13031: Fix for utiltime to compile with msvc.
abd58a2 Fix for utiltime to compile with msvc. (Aaron Clauson) Pull request description: This PR allows utiltime.cpp to compile with msvc after the changes introduced in #12973. Tree-SHA512: 7233b1c23400bf19aef2fcb6168009ef58b9e7f8e49c46d8cf9d04394091f370e39496d24ca00b294c4164bcfc04514e329bf6bb05169406c34ce7cd8c382565
This commit is contained in:
commit
826acc9a3d
@ -79,20 +79,32 @@ void MilliSleep(int64_t n)
|
|||||||
std::string FormatISO8601DateTime(int64_t nTime) {
|
std::string FormatISO8601DateTime(int64_t nTime) {
|
||||||
struct tm ts;
|
struct tm ts;
|
||||||
time_t time_val = nTime;
|
time_t time_val = nTime;
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
gmtime_s(&ts, &time_val);
|
||||||
|
#else
|
||||||
gmtime_r(&time_val, &ts);
|
gmtime_r(&time_val, &ts);
|
||||||
|
#endif
|
||||||
return strprintf("%04i-%02i-%02iT%02i:%02i:%02iZ", ts.tm_year + 1900, ts.tm_mon + 1, ts.tm_mday, ts.tm_hour, ts.tm_min, ts.tm_sec);
|
return strprintf("%04i-%02i-%02iT%02i:%02i:%02iZ", ts.tm_year + 1900, ts.tm_mon + 1, ts.tm_mday, ts.tm_hour, ts.tm_min, ts.tm_sec);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string FormatISO8601Date(int64_t nTime) {
|
std::string FormatISO8601Date(int64_t nTime) {
|
||||||
struct tm ts;
|
struct tm ts;
|
||||||
time_t time_val = nTime;
|
time_t time_val = nTime;
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
gmtime_s(&ts, &time_val);
|
||||||
|
#else
|
||||||
gmtime_r(&time_val, &ts);
|
gmtime_r(&time_val, &ts);
|
||||||
|
#endif
|
||||||
return strprintf("%04i-%02i-%02i", ts.tm_year + 1900, ts.tm_mon + 1, ts.tm_mday);
|
return strprintf("%04i-%02i-%02i", ts.tm_year + 1900, ts.tm_mon + 1, ts.tm_mday);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string FormatISO8601Time(int64_t nTime) {
|
std::string FormatISO8601Time(int64_t nTime) {
|
||||||
struct tm ts;
|
struct tm ts;
|
||||||
time_t time_val = nTime;
|
time_t time_val = nTime;
|
||||||
|
#ifdef _MSC_VER
|
||||||
|
gmtime_s(&ts, &time_val);
|
||||||
|
#else
|
||||||
gmtime_r(&time_val, &ts);
|
gmtime_r(&time_val, &ts);
|
||||||
|
#endif
|
||||||
return strprintf("%02i:%02i:%02iZ", ts.tm_hour, ts.tm_min, ts.tm_sec);
|
return strprintf("%02i:%02i:%02iZ", ts.tm_hour, ts.tm_min, ts.tm_sec);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user