EgtGraphics :

- aggiunto ( nothrow) a tutte le new.
This commit is contained in:
Dario Sassi
2018-08-22 07:49:07 +00:00
parent c04b3178ae
commit 723ca86c7b
3 changed files with 8 additions and 7 deletions
+1 -2
View File
@@ -20,12 +20,11 @@
using namespace std ;
//----------------------------------------------------------------------------
ISceExecutor*
CreateSceExecutor( void)
{
return static_cast<ISceExecutor*> ( new SceExecutor) ;
return static_cast<ISceExecutor*> ( new( nothrow) SceExecutor) ;
}
//----------------------------------------------------------------------------