Skip to content
Snippets Groups Projects
Commit 661e0e94 authored by andy's avatar andy
Browse files

BUG: AC3D reader - corrected conversion of label to string for output message

parent 302c5ae7
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,13 @@ bool triSurface::readAC(const fileName& ACfileName)
for (label patchI = 0; patchI < nPatches; patchI++)
{
readUpto("OBJECT", ACfile, args, " while reading patch " + patchI);
readUpto
(
"OBJECT",
ACfile,
args,
" while reading patch " + Foam::name(patchI)
);
// Object global values
string patchName = string("patch") + name(patchI);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment