diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-05-18 16:42:39 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-05-18 17:14:15 +0100 |
commit | 4b5091cfd768360a7de3d416de670dfcdeb36990 (patch) | |
tree | dc4a80ae7b4d96fddb45abeb813dc28ccf49ef4e /basegfx | |
parent | 06f1272adec1c434d311cc59fc8bc247a9d80d2f (diff) |
cppunit: noExplicitConstructor
Change-Id: Iaf1387ea236bf3a5db9b2165d5b827dbdcf95207
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/workbench/convexhull.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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 <class PointType> double theta( const PointType& p1, const PointType& p template <class PointType> 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 ) { |