summaryrefslogtreecommitdiffstats
path: root/basegfx/source/workbench/convexhull.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basegfx/source/workbench/convexhull.cxx')
-rw-r--r--basegfx/source/workbench/convexhull.cxx2
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 )
{