Fix multiple definition of pj_time_local_to_gmt() and pj_time_gmt_to_local()

This commit is contained in:
Riza Sulistyo 2023-02-27 13:54:44 +07:00
parent f7b8768a9a
commit 13a4dd503c
1 changed files with 1 additions and 4 deletions

View File

@ -71,9 +71,6 @@ PJ_DEF(pj_status_t) pj_time_encode(const pj_parsed_time *pt, pj_time_val *tv)
return PJ_SUCCESS;
}
#endif /* !PJ_WIN32 */
static int get_tz_offset_secs()
{
time_t epoch_plus_11h = 60 * 60 * 11;
@ -110,4 +107,4 @@ PJ_DEF(pj_status_t) pj_time_gmt_to_local(pj_time_val *tv)
return PJ_SUCCESS;
}
#endif /* !PJ_WIN32 */