Skip to content
Snippets Groups Projects
Commit f5573332 authored by mattijs's avatar mattijs
Browse files

BUG: UIPread: missing constructor

parent 5fde154c
Branches
Tags
No related merge requests found
......@@ -53,15 +53,42 @@ Foam::UIPstream::UIPstream
{
notImplemented
(
"UIPstream::UIPstream"
"("
"const commsTypes,"
"const int fromProcNo,"
"DynamicList<char>&,"
"label&,"
"const int tag,"
"const bool,"
"streamFormat, versionNumber"
"UIPstream::UIPstream\n"
"(\n"
"const commsTypes,\n"
"const int,\n"
"DynamicList<char>&,\n"
"label&,\n"
"const int,\n"
"const bool,\n"
"streamFormat,\n"
"versionNumber\n"
")"
);
}
Foam::UIPstream::UIPstream
(
const int fromProcNo,
PstreamBuffers& buffers
)
:
UPstream(buffers.commsType_),
Istream(buffers.format_, buffers.version_),
fromProcNo_(fromProcNo),
externalBuf_(buffers.recvBuf_[fromProcNo]),
externalBufPosition_(buffers.recvBufPos_[fromProcNo]),
tag_(buffers.tag_),
clearAtEnd_(true),
messageSize_(0)
{
notImplemented
(
"UIPstream::UIPstream\n"
"(\n"
"const int,\n"
"PstreamBuffers&\n"
")"
);
}
......
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