mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Preempt commit conflict.
This commit is contained in:
@ -78,9 +78,18 @@ Foam::featureEdgeMesh::featureEdgeMesh(const IOobject& io)
|
||||
if
|
||||
(
|
||||
io.readOpt() == IOobject::MUST_READ
|
||||
|| io.readOpt() == IOobject::MUST_READ_IF_MODIFIED
|
||||
|| (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
|
||||
)
|
||||
{
|
||||
if (readOpt() == IOobject::MUST_READ_IF_MODIFIED)
|
||||
{
|
||||
WarningIn("featureEdgeMesh::featureEdgeMesh(const IOobject&)")
|
||||
<< "Specified IOobject::MUST_READ_IF_MODIFIED but class"
|
||||
<< " does not support automatic rereading."
|
||||
<< endl;
|
||||
}
|
||||
|
||||
dictionary edgeMeshDict(readStream(typeName));
|
||||
|
||||
edgeMesh::operator=
|
||||
|
||||
Reference in New Issue
Block a user