diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2018-04-12 22:31:15 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2018-04-13 01:36:53 -0700 |
commit | 152701568159915828613fa131e94e21337c0c2d (patch) | |
tree | 5b72f64924e1b377c9b5fd71de49439e340e7738 /src/utiltime.h | |
parent | 5df84de583c900e00fef63bedaef32786f205a33 (diff) |
Avoid std::locale/imbue in DateTimeStrFormat
Diffstat (limited to 'src/utiltime.h')
-rw-r--r-- | src/utiltime.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/utiltime.h b/src/utiltime.h index 807c52ffaf..3bcbb00c16 100644 --- a/src/utiltime.h +++ b/src/utiltime.h @@ -31,8 +31,6 @@ void MilliSleep(int64_t n); * ISO 8601 formatting is preferred. Use the FormatISO8601{DateTime,Date,Time} * helper functions if possible. */ -std::string DateTimeStrFormat(const char* pszFormat, int64_t nTime); - std::string FormatISO8601DateTime(int64_t nTime); std::string FormatISO8601Date(int64_t nTime); std::string FormatISO8601Time(int64_t nTime); |