diff --git a/applications/solvers/combustion/chemFoam/createSingleCellMesh.H b/applications/solvers/combustion/chemFoam/createSingleCellMesh.H index a43af46326..d65e45f44e 100644 --- a/applications/solvers/combustion/chemFoam/createSingleCellMesh.H +++ b/applications/solvers/combustion/chemFoam/createSingleCellMesh.H @@ -1,8 +1,5 @@ Info<< "Constructing single cell mesh" << nl << endl; -labelList owner(6, label(0)); -labelList neighbour(0); - pointField points(8); points[0] = vector(0, 0, 0); points[1] = vector(1, 0, 0); @@ -24,10 +21,10 @@ fvMesh mesh runTime, IOobject::READ_IF_PRESENT ), - xferMove(points), - faces.xfer(), - owner.xfer(), - neighbour.xfer() + std::move(points), + std::move(faces), + labelList(6, Zero), // owner + labelList() // neighbour ); List patches(1); diff --git a/applications/test/Dictionary/Test-Dictionary.C b/applications/test/Dictionary/Test-Dictionary.C index 251cb2f841..d360c30a3b 100644 --- a/applications/test/Dictionary/Test-Dictionary.C +++ b/applications/test/Dictionary/Test-Dictionary.C @@ -180,7 +180,7 @@ int main(int argc, char *argv[]) { std::cout<< "iter: " << typeid(*iter).name() << '\n'; - Info<< "elem = " << *(*iter) << endl; + // Info<< "elem = " << *(*iter) << endl; } std::cout<< "iter type: " diff --git a/applications/test/DynamicList/Test-DynamicList.C b/applications/test/DynamicList/Test-DynamicList.C index 11111aad00..8ca36068ce 100644 --- a/applications/test/DynamicList/Test-DynamicList.C +++ b/applications/test/DynamicList/Test-DynamicList.C @@ -194,13 +194,13 @@ int main(int argc, char *argv[]) printInfo("dlC", dlC, true); - List