Skip to content

Commit

Permalink
[DEV] (std::nothrow)
Browse files Browse the repository at this point in the history
  • Loading branch information
payetvin committed Sep 18, 2023
1 parent 3b2732f commit f948eb7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void H2O_J_ResoudreLeProblemeLineaire(DONNEES_MENSUELLES* DonneesMensuelles, int

if (!Probleme)
{
Probleme = new PROBLEME_SIMPLEXE;
Probleme = new(std::nothrow) PROBLEME_SIMPLEXE;
if (!Probleme)
{
DonneesMensuelles->ResultatsValides = EMERGENCY_SHUT_DOWN;
Expand Down

0 comments on commit f948eb7

Please sign in to comment.