Skip to content

Commit df38c90

Browse files
committed
Using std namespace
1 parent 21cc146 commit df38c90

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/xtd.core/include/xtd/internal/__date_time_formatter.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
// These four following methods are implemented in src/xtd/date_time.cpp file.
1616
std::string __date_time_formatter(std::string fmt, const std::tm& time, xtd::uint32 nanoseconds, const std::locale& loc);
1717
std::wstring __date_time_formatter(std::wstring fmt, const std::tm& time, xtd::uint32 nanoseconds, const std::locale& loc);
18-
std::string __date_time_formatter(const std::string& fmt, time_t time, xtd::uint32 nanoseconds, const std::locale& loc);
19-
std::wstring __date_time_formatter(const std::wstring& fmt, time_t time, xtd::uint32 nanoseconds, const std::locale& loc);
18+
std::string __date_time_formatter(const std::string& fmt, std::time_t time, xtd::uint32 nanoseconds, const std::locale& loc);
19+
std::wstring __date_time_formatter(const std::wstring& fmt, std::time_t time, xtd::uint32 nanoseconds, const std::locale& loc);
2020
/// @endcond

0 commit comments

Comments
 (0)