https://bugs.documentfoundation.org/show_bug.cgi?id=147906
--- Comment #6 from Libreoffice user SSO <[email protected]> --- At core/filter/source/svg/svgwriter.cxx:304 "const double fRadius = sqrt( static_cast< double >( rObjRect.GetWidth() ) * rObjRect.GetWidth() + rObjRect.GetHeight()*rObjRect.GetHeight() ) * 0.5;" Is it a candidate for changing it to: "const double fRadius = std::hypot(rObjRect.GetWidth(), rObjRect.GetHeight()) * 0.5" If yes, then why it's not letting me make a commit containing this lines of code ? If no, Some explanations will be great :)!! -- You are receiving this mail because: You are the assignee for the bug.
