From 2e66ae60ae392d196464ab7d9ff26e78937a64b9 Mon Sep 17 00:00:00 2001 From: Henry Weller Date: Wed, 23 Nov 2016 16:22:10 +0000 Subject: [PATCH] primitiveShapes::plane: Removed redundant 'explicit' Declaration of 'explicit' constructor without a single argument are redundant. --- src/OpenFOAM/meshes/primitiveShapes/plane/plane.H | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenFOAM/meshes/primitiveShapes/plane/plane.H b/src/OpenFOAM/meshes/primitiveShapes/plane/plane.H index 6769a1708..5265ef063 100644 --- a/src/OpenFOAM/meshes/primitiveShapes/plane/plane.H +++ b/src/OpenFOAM/meshes/primitiveShapes/plane/plane.H @@ -129,10 +129,10 @@ public: explicit plane(const vector& normalVector); //- Construct from normal vector and point in plane - explicit plane(const point& basePoint, const vector& normalVector); + plane(const point& basePoint, const vector& normalVector); //- Construct from three points in plane - explicit plane + plane ( const point& point1, const point& point2,