Changed the naming convention for public member variables/functions and free functions (using lowerCase instead of UpperCase)
This commit is contained in:
parent
ff5b69d312
commit
14ac411542
200 changed files with 4302 additions and 4320 deletions
|
@ -47,14 +47,14 @@ ThreadLocalImpl::~ThreadLocalImpl()
|
|||
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
void ThreadLocalImpl::SetValue(void* value)
|
||||
void ThreadLocalImpl::setValue(void* value)
|
||||
{
|
||||
pthread_setspecific(m_key, value);
|
||||
}
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////
|
||||
void* ThreadLocalImpl::GetValue() const
|
||||
void* ThreadLocalImpl::getValue() const
|
||||
{
|
||||
return pthread_getspecific(m_key);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue