Kaydet (Commit) 30406c6e authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708676 Uninitialized scalar field

Change-Id: Ia335de7960984f9700cb5a69f20b3c7773d1176c
üst 7994dafa
......@@ -57,7 +57,10 @@ public:
template <typename T>
OutputWithDepth<T>::OutputWithDepth(const T & aOpenTag, const T & aEndTag)
: mOpenTag(aOpenTag), mCloseTag(aEndTag)
: mnCurrentDepth(0)
, mnGroupDepth(0)
, mOpenTag(aOpenTag)
, mCloseTag(aEndTag)
{
}
......
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