coverity#738915 Uninitialized scalar field

Change-Id: I1ac675441b50ceab7df78fb9646e4e1bd8e6e36e
This commit is contained in:
Caolán McNamara 2014-02-18 12:32:52 +00:00
parent 02c17c1dd3
commit 06b44f9961

View File

@ -38,9 +38,11 @@ struct tolerance
}
tolerance()
: elementName(NULL)
, attribName(NULL)
, relative(false)
, value(0.0)
{
elementName = NULL;
attribName = NULL;
}
tolerance(const tolerance& tol)