From 8cf6808c508e5fff17b7497b0a85ab082f0db61c Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Mon, 23 Mar 2020 16:24:39 -0700 Subject: [PATCH] build fix --- osdep/OSUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osdep/OSUtils.cpp b/osdep/OSUtils.cpp index 3e733b2c9..eafb26a51 100644 --- a/osdep/OSUtils.cpp +++ b/osdep/OSUtils.cpp @@ -37,7 +37,7 @@ static clock_serv_t _machGetRealtimeClock() noexcept host_get_clock_service(mach_host_self(),CALENDAR_CLOCK,&c); return c; } -static clock_serv_t s_machRealtimeClock = _machGetRealtimeClock(); +clock_serv_t OSUtils::s_machRealtimeClock = _machGetRealtimeClock(); #endif unsigned int OSUtils::ztsnprintf(char *buf,unsigned int len,const char *fmt,...)