mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: use std:: qualifier on ::abort, ::exit
- consistent with use of <cstdlib> and makes for a stronger distinct from Foam::abort etc.
This commit is contained in:
committed by
Andrew Heather
parent
dd9b7d3d7e
commit
f3670521cd
@ -887,7 +887,7 @@ bool Foam::functionObjectList::read()
|
||||
catch (const Foam::IOerror& ioErr)
|
||||
{
|
||||
Info<< ioErr << nl << endl;
|
||||
::exit(1);
|
||||
std::exit(1);
|
||||
}
|
||||
catch (const Foam::error& err)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user