[Issue#] LINUXWRT-1004
[Problem] Warning was displayed during building process
[Cause] Members initialization order was wrong in constructor
DPL::ZipInput::ZipInput (modules/core/src/zip_input.cpp)
[Solution] Set proper initialization order, like it is defined in
modules/core/include/dpl/zip_input.h
[Verification] Build repository.
[SCMRequest] N/A
Change-Id: Icd8cc3c83b22c9b4a470d2bf5b1ec01d97cdb049
m_device(NULL),
m_numberOfFiles(0),
m_globalComment(),
- m_fileInfos(),
- m_totalUncompressedSize(0)
+ m_totalUncompressedSize(0),
+ m_fileInfos()
{
LogPedantic("Zip input file: " << fileName);