diff options
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 ) { |