mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 01:09:34 +00:00
Fixed: C++11 forbids to throw exception in destructor
This commit is contained in:
parent
e1f810ffba
commit
ba441d034a
1 changed files with 5 additions and 2 deletions
|
@ -50,8 +50,11 @@ struct CPMainThread : public CPThread
|
|||
|
||||
~CPMainThread()
|
||||
{
|
||||
if(pthread_key_delete(threadSpecificKey) != 0)
|
||||
throw EThread("cannot delete thread specific storage key.");
|
||||
if (pthread_key_delete(threadSpecificKey) != 0)
|
||||
{
|
||||
nlwarning("cannot delete thread specific storage key.");
|
||||
// throw EThread("cannot delete thread specific storage key.");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue