Kaydet (Commit) 39cc076c authored tarafından Noel Grandin's avatar Noel Grandin

loplugin:redundantparen

Change-Id: Ie1bae8acdd70ba7943d8ae245d95dee16ce2e5d5
üst 256c28ae
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment