From 4b5091cfd768360a7de3d416de670dfcdeb36990 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 18 May 2015 16:42:39 +0100 Subject: cppunit: noExplicitConstructor Change-Id: Iaf1387ea236bf3a5db9b2165d5b827dbdcf95207 --- basegfx/source/workbench/convexhull.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'basegfx') diff --git a/basegfx/source/workbench/convexhull.cxx b/basegfx/source/workbench/convexhull.cxx index 5c40efda2929..e94c2d76045a 100644 --- a/basegfx/source/workbench/convexhull.cxx +++ b/basegfx/source/workbench/convexhull.cxx @@ -46,7 +46,7 @@ template double theta( const PointType& p1, const PointType& p template class ThetaCompare : public ::std::binary_function< const PointType&, const PointType&, bool > { public: - ThetaCompare( const PointType& rRefPoint ) : maRefPoint( rRefPoint ) {} + explicit ThetaCompare( const PointType& rRefPoint ) : maRefPoint( rRefPoint ) {} bool operator() ( const PointType& p1, const PointType& p2 ) { -- cgit