mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge commit 'origin/master' into splitCyclic
This commit is contained in:
@ -30,7 +30,6 @@ License
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
|
||||
defineTypeNameAndDebug(curvedEdge, 0);
|
||||
defineRunTimeSelectionTable(curvedEdge, Istream);
|
||||
}
|
||||
@ -87,7 +86,7 @@ Foam::autoPtr<Foam::curvedEdge> Foam::curvedEdge::New
|
||||
<< endl;
|
||||
}
|
||||
|
||||
word edgeType(is);
|
||||
const word edgeType(is);
|
||||
|
||||
IstreamConstructorTable::iterator cstrIter =
|
||||
IstreamConstructorTablePtr_->find(edgeType);
|
||||
@ -95,7 +94,8 @@ Foam::autoPtr<Foam::curvedEdge> Foam::curvedEdge::New
|
||||
if (cstrIter == IstreamConstructorTablePtr_->end())
|
||||
{
|
||||
FatalErrorIn("curvedEdge::New(const pointField&, Istream&)")
|
||||
<< "Unknown curvedEdge type " << edgeType << endl << endl
|
||||
<< "Unknown curvedEdge type "
|
||||
<< edgeType << nl << nl
|
||||
<< "Valid curvedEdge types are" << endl
|
||||
<< IstreamConstructorTablePtr_->sortedToc()
|
||||
<< abort(FatalError);
|
||||
|
||||
Reference in New Issue
Block a user