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

STYLE: duplicate ;;

parent 208cfcfc
Branches
Tags
No related merge requests found
...@@ -433,7 +433,7 @@ mtype {space}"MTYPE:"{space} ...@@ -433,7 +433,7 @@ mtype {space}"MTYPE:"{space}
} }
else else
{ {
curGroupID = readLabel(groupStream);; curGroupID = readLabel(groupStream);
} }
BEGIN(cellStreams); BEGIN(cellStreams);
......
...@@ -9,5 +9,5 @@ int USERD_get_number_of_files_in_dataset(void) ...@@ -9,5 +9,5 @@ int USERD_get_number_of_files_in_dataset(void)
// use 1 insted of 0 which gives an un-necessary warning. // use 1 insted of 0 which gives an un-necessary warning.
Num_dataset_files = 1; Num_dataset_files = 1;
return Num_dataset_files;; return Num_dataset_files;
} }
...@@ -83,8 +83,8 @@ void Foam::cellPointWeight::findTetrahedron ...@@ -83,8 +83,8 @@ void Foam::cellPointWeight::findTetrahedron
) )
{ {
faceVertices_[0] = f[tetIs.faceBasePt()]; faceVertices_[0] = f[tetIs.faceBasePt()];
faceVertices_[1] = f[tetIs.facePtA()];; faceVertices_[1] = f[tetIs.facePtA()];
faceVertices_[2] = f[tetIs.facePtB()];; faceVertices_[2] = f[tetIs.facePtB()];
return; return;
} }
...@@ -191,8 +191,8 @@ void Foam::cellPointWeight::findTriangle ...@@ -191,8 +191,8 @@ void Foam::cellPointWeight::findTriangle
weights_[3] = triWeights[2]; weights_[3] = triWeights[2];
faceVertices_[0] = f[tetIs.faceBasePt()]; faceVertices_[0] = f[tetIs.faceBasePt()];
faceVertices_[1] = f[tetIs.facePtA()];; faceVertices_[1] = f[tetIs.facePtA()];
faceVertices_[2] = f[tetIs.facePtB()];; faceVertices_[2] = f[tetIs.facePtB()];
return; return;
} }
......
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