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

coverity#738915 Uninitialized scalar field

Change-Id: I1ac675441b50ceab7df78fb9646e4e1bd8e6e36e
üst 02c17c1d
...@@ -38,9 +38,11 @@ struct tolerance ...@@ -38,9 +38,11 @@ struct tolerance
} }
tolerance() tolerance()
: elementName(NULL)
, attribName(NULL)
, relative(false)
, value(0.0)
{ {
elementName = NULL;
attribName = NULL;
} }
tolerance(const tolerance& tol) tolerance(const tolerance& tol)
......
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