Kaydet (Commit) 19efa825 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:unnecessaryparen (clang-cl)

Change-Id: I11a535a5271ec15965877986f15adc0804c00a4f
üst 4eaaa812
......@@ -71,13 +71,13 @@ CurThreadData::~CurThreadData()
bool CurThreadData::setData(void *pData)
{
OSL_ENSURE( m_hKey, "No thread key!" );
return (osl_setThreadKeyData(m_hKey, pData));
return osl_setThreadKeyData(m_hKey, pData);
}
void *CurThreadData::getData()
{
OSL_ENSURE( m_hKey, "No thread key!" );
return (osl_getThreadKeyData(m_hKey));
return osl_getThreadKeyData(m_hKey);
}
void o2u_attachCurrentThread()
......
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