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

coverity#1202945 Uninitialized scalar field

Change-Id: I282620ab4efc6da7eaed909c9c95910c63186970
üst 2535541f
......@@ -23,9 +23,10 @@ void Renderable3DObject::render()
(void) mnUniqueId;
}
Bar::Bar(const glm::mat4& rPosition, sal_uInt32 nId):
Renderable3DObject(nId),
maPos(rPosition)
Bar::Bar(const glm::mat4& rPosition, sal_uInt32 nId)
: Renderable3DObject(nId)
, mbRoundedCorners(false)
, maPos(rPosition)
{
}
......
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