diff --git a/applications/utilities/mesh/conversion/gambitToFoam/gambitToFoam.L b/applications/utilities/mesh/conversion/gambitToFoam/gambitToFoam.L index 7706ccb272..dc4531fef6 100644 --- a/applications/utilities/mesh/conversion/gambitToFoam/gambitToFoam.L +++ b/applications/utilities/mesh/conversion/gambitToFoam/gambitToFoam.L @@ -433,7 +433,7 @@ mtype {space}"MTYPE:"{space} } else { - curGroupID = readLabel(groupStream);; + curGroupID = readLabel(groupStream); } BEGIN(cellStreams); diff --git a/applications/utilities/postProcessing/graphics/ensightFoamReader/USERD_get_number_of_files_in_dataset.H b/applications/utilities/postProcessing/graphics/ensightFoamReader/USERD_get_number_of_files_in_dataset.H index e2246d27da..ed936ee082 100644 --- a/applications/utilities/postProcessing/graphics/ensightFoamReader/USERD_get_number_of_files_in_dataset.H +++ b/applications/utilities/postProcessing/graphics/ensightFoamReader/USERD_get_number_of_files_in_dataset.H @@ -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; } diff --git a/src/finiteVolume/interpolation/interpolation/interpolationCellPoint/cellPointWeight/cellPointWeight.C b/src/finiteVolume/interpolation/interpolation/interpolationCellPoint/cellPointWeight/cellPointWeight.C index 3ef207b702..13828ff7cf 100644 --- a/src/finiteVolume/interpolation/interpolation/interpolationCellPoint/cellPointWeight/cellPointWeight.C +++ b/src/finiteVolume/interpolation/interpolation/interpolationCellPoint/cellPointWeight/cellPointWeight.C @@ -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; }