mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: timeActivatedFileUpdate: was potentially rereading itself!
Fixed by setting flag which then gets queried by Time. Fixes #420.
This commit is contained in:
@ -220,6 +220,17 @@ bool Foam::functionObjects::timeControl::read
|
||||
}
|
||||
|
||||
|
||||
bool Foam::functionObjects::timeControl::filesModified() const
|
||||
{
|
||||
bool mod = false;
|
||||
if (active())
|
||||
{
|
||||
mod = foPtr_->filesModified();
|
||||
}
|
||||
return mod;
|
||||
}
|
||||
|
||||
|
||||
void Foam::functionObjects::timeControl::updateMesh
|
||||
(
|
||||
const mapPolyMesh& mpm
|
||||
|
||||
Reference in New Issue
Block a user