MCPcopy Create free account
hub / github.com/comaps/comaps / GmTime

Function GmTime

libs/base/gmtime.cpp:7–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5namespace base
6{
7std::tm GmTime(time_t time)
8{
9 std::tm result{};
10#ifndef OMIM_OS_WINDOWS
11 gmtime_r(&time, &result);
12#else
13 gmtime_s(&result, &time);
14#endif
15 return result;
16}
17} // namespace base

Callers 2

GenerateYYMMDDFunction · 0.85
GetVersionMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected