Kaydet (Commit) 2639d2f7 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#738764: Unitialized scalar field

Change-Id: Id0e724ab2b6bead9f20a5c60a1094648ce3e843e
üst cf6af1d4
......@@ -137,10 +137,10 @@ class XFColumns
{
public:
XFColumns()
{
m_nFlag = 0;
m_fGap = 0;
}
: m_nFlag(0)
, m_nCount(0)
, m_fGap(0.0)
{ }
public:
void SetSeparator(XFColumnSep& aSeparator);
void SetGap(double fGap);
......
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