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

coverity#1308147 Uninitialized scalar field

Change-Id: I1021b02aa2dc9afffa34d52ddfc71f683a594a0e
üst 87d35929
......@@ -29,9 +29,10 @@ using namespace ::com::sun::star;
namespace chart
{
ExponentialRegressionCurveCalculator::ExponentialRegressionCurveCalculator() :
m_fLogSlope( 0.0 ),
m_fLogIntercept( 0.0 )
ExponentialRegressionCurveCalculator::ExponentialRegressionCurveCalculator()
: m_fLogSlope(0.0)
, m_fLogIntercept(0.0)
, m_fSign(1.0)
{
::rtl::math::setNan( & m_fLogSlope );
::rtl::math::setNan( & m_fLogIntercept );
......
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