mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: duplicate ;;
This commit is contained in:
@ -433,7 +433,7 @@ mtype {space}"MTYPE:"{space}
|
||||
}
|
||||
else
|
||||
{
|
||||
curGroupID = readLabel(groupStream);;
|
||||
curGroupID = readLabel(groupStream);
|
||||
}
|
||||
|
||||
BEGIN(cellStreams);
|
||||
|
||||
@ -9,5 +9,5 @@ int USERD_get_number_of_files_in_dataset(void)
|
||||
|
||||
// use 1 insted of 0 which gives an un-necessary warning.
|
||||
Num_dataset_files = 1;
|
||||
return Num_dataset_files;;
|
||||
return Num_dataset_files;
|
||||
}
|
||||
|
||||
@ -83,8 +83,8 @@ void Foam::cellPointWeight::findTetrahedron
|
||||
)
|
||||
{
|
||||
faceVertices_[0] = f[tetIs.faceBasePt()];
|
||||
faceVertices_[1] = f[tetIs.facePtA()];;
|
||||
faceVertices_[2] = f[tetIs.facePtB()];;
|
||||
faceVertices_[1] = f[tetIs.facePtA()];
|
||||
faceVertices_[2] = f[tetIs.facePtB()];
|
||||
|
||||
return;
|
||||
}
|
||||
@ -191,8 +191,8 @@ void Foam::cellPointWeight::findTriangle
|
||||
weights_[3] = triWeights[2];
|
||||
|
||||
faceVertices_[0] = f[tetIs.faceBasePt()];
|
||||
faceVertices_[1] = f[tetIs.facePtA()];;
|
||||
faceVertices_[2] = f[tetIs.facePtB()];;
|
||||
faceVertices_[1] = f[tetIs.facePtA()];
|
||||
faceVertices_[2] = f[tetIs.facePtB()];
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user