Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
ba9393b6
Kaydet (Commit)
ba9393b6
authored
Mar 06, 2016
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
coverity#1355253 Uninitialized scalar field
Change-Id: Ib89a7e44562b6bf8a8ae41e71e3d91ad5569b8d1
üst
22d2b498
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
9 deletions
+22
-9
interpr8.cxx
sc/source/core/tool/interpr8.cxx
+22
-9
No files found.
sc/source/core/tool/interpr8.cxx
Dosyayı görüntüle @
ba9393b6
...
...
@@ -125,15 +125,28 @@ public:
bool
GetETSPredictionIntervals
(
ScMatrixRef
rTMat
,
ScMatrixRef
rPIMat
,
double
fPILevel
);
};
ScETSForecastCalculation
::
ScETSForecastCalculation
(
SCSIZE
nSize
,
SvNumberFormatter
*
pFormatter
)
:
mpFormatter
(
pFormatter
),
mpBase
(
nullptr
),
mpTrend
(
nullptr
),
mpPerIdx
(
nullptr
),
mpForecast
(
nullptr
),
mnCount
(
nSize
),
mbInitialised
(
false
),
mnMonthDay
(
0
)
ScETSForecastCalculation
::
ScETSForecastCalculation
(
SCSIZE
nSize
,
SvNumberFormatter
*
pFormatter
)
:
mpFormatter
(
pFormatter
)
,
mpBase
(
nullptr
)
,
mpTrend
(
nullptr
)
,
mpPerIdx
(
nullptr
)
,
mpForecast
(
nullptr
)
,
mnSmplInPrd
(
0
)
,
mfStepSize
(
0.0
)
,
mfAlpha
(
0.0
)
,
mfBeta
(
0.0
)
,
mfGamma
(
0.0
)
,
mnCount
(
nSize
)
,
mbInitialised
(
false
)
,
mnMonthDay
(
0
)
,
mfMAE
(
0.0
)
,
mfMASE
(
0.0
)
,
mfMSE
(
0.0
)
,
mfRMSE
(
0.0
)
,
mfSMAPE
(
0.0
)
,
mnErrorValue
(
0
)
,
bAdditive
(
false
)
,
bEDS
(
false
)
{
maRange
.
reserve
(
mnCount
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment