Skip to content
Snippets Groups Projects
Commit 93d1f74d authored by Mattijs Janssens's avatar Mattijs Janssens
Browse files

dummy Pstream update and typo in Time.C comment. Sorry for mixup.

parent daca3b33
No related merge requests found
...@@ -407,7 +407,7 @@ Foam::instant Foam::Time::findClosestTime(const scalar t) const ...@@ -407,7 +407,7 @@ Foam::instant Foam::Time::findClosestTime(const scalar t) const
{ {
instantList times = Time::findTimes(path()); instantList times = Time::findTimes(path());
// If there is only one time its "constant" so return it // If there is only one time it is "constant" so return it
if (times.size() == 1) if (times.size() == 1)
{ {
return times[0]; return times[0];
......
...@@ -90,6 +90,16 @@ int IPstream::read ...@@ -90,6 +90,16 @@ int IPstream::read
} }
void IPstream::waitRequests()
{}
bool IPstream::finishedRequest(const label)
{
notImplemented("IPstream::finishedRequest()");
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam } // End namespace Foam
......
...@@ -68,6 +68,17 @@ bool OPstream::write ...@@ -68,6 +68,17 @@ bool OPstream::write
} }
void OPstream::waitRequests()
{}
bool OPstream::finishedRequest(const label)
{
notImplemented("OPstream::finishedRequest()");
return false;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam } // End namespace Foam
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment