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

STYLE: globalPoints.C : reference to struct instead of copy.

parent a7c103d6
Branches
Tags
No related merge requests found
...@@ -1066,7 +1066,7 @@ void Foam::globalPoints::calculateSharedPoints ...@@ -1066,7 +1066,7 @@ void Foam::globalPoints::calculateSharedPoints
for (label i = 1; i < pointInfo.size(); i++) for (label i = 1; i < pointInfo.size(); i++)
{ {
labelPair info = pointInfo[i]; const labelPair& info = pointInfo[i];
label procI = globalIndexAndTransform::processor(info); label procI = globalIndexAndTransform::processor(info);
label index = globalIndexAndTransform::index(info); label index = globalIndexAndTransform::index(info);
label transform = globalIndexAndTransform::transformIndex label transform = globalIndexAndTransform::transformIndex
......
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