Kaydet (Commit) 7c30bf05 authored tarafından jan Iversen's avatar jan Iversen

vcl, solve iOS compile failure.

"voided" new formal parameter

Change-Id: I7d8849765eb6a2642f48159bae34c3b8bec3a8cd
üst fb5f1367
...@@ -167,7 +167,9 @@ void SvpSalInstance::Wakeup(SvpRequest const request) ...@@ -167,7 +167,9 @@ void SvpSalInstance::Wakeup(SvpRequest const request)
g_CheckedMutex = true; g_CheckedMutex = true;
} }
#endif #endif
#ifndef IOS #ifdef IOS
(void)request;
#else
SvpSalYieldMutex *const pMutex(static_cast<SvpSalYieldMutex*>(mpSalYieldMutex.get())); SvpSalYieldMutex *const pMutex(static_cast<SvpSalYieldMutex*>(mpSalYieldMutex.get()));
std::unique_lock<std::mutex> g(pMutex->m_WakeUpMainMutex); std::unique_lock<std::mutex> g(pMutex->m_WakeUpMainMutex);
if (request != SvpRequest::NONE) if (request != SvpRequest::NONE)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment