Kaydet (Commit) 95f88461 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1308146 Uninitialized scalar field

Change-Id: Ida37b83fed0ff5f76fab38153d2e8021a398faa1
üst a726ba2a
......@@ -29,9 +29,10 @@ using namespace ::com::sun::star;
namespace chart
{
PotentialRegressionCurveCalculator::PotentialRegressionCurveCalculator() :
m_fSlope( 0.0 ),
m_fIntercept( 0.0 )
PotentialRegressionCurveCalculator::PotentialRegressionCurveCalculator()
: m_fSlope(0.0)
, m_fIntercept(0.0)
, m_fSign(1.0)
{
::rtl::math::setNan( & m_fSlope );
::rtl::math::setNan( & m_fIntercept );
......
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