diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-18 14:22:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-18 14:23:39 +0200 |
commit | 39cc076cb66071c1522fb554a1469c039b6b5770 (patch) | |
tree | dd651da8240279c6444dfedcaca60751ab617543 /include/tools | |
parent | 256c28ae3354d49d0e2ebdf11ef2a64da7954f68 (diff) |
loplugin:redundantparen
Change-Id: Ie1bae8acdd70ba7943d8ae245d95dee16ce2e5d5
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/line.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/line.hxx b/include/tools/line.hxx index 58b94e0c68c0..97cf449fc1b1 100644 --- a/include/tools/line.hxx +++ b/include/tools/line.hxx @@ -46,7 +46,7 @@ public: bool Intersection( const tools::Line& rLine, Point& rIntersection ) const; double GetDistance( const double& rPtX, const double& rPtY ) const; - double GetDistance( const Point& rPoint ) const { return( GetDistance( rPoint.X(), rPoint.Y() ) ); } + double GetDistance( const Point& rPoint ) const { return GetDistance( rPoint.X(), rPoint.Y() ); } }; } // namespace tools |