coverity scan: add missing initialization.
authorKim Kulling <kim.kulling@googlemail.com>
Sun, 10 Jan 2016 19:25:01 +0000 (20:25 +0100)
committerKim Kulling <kim.kulling@googlemail.com>
Sun, 10 Jan 2016 19:25:01 +0000 (20:25 +0100)
code/FBXDeformer.cpp

index 7a4ff43..4df8d97 100644 (file)
@@ -131,7 +131,7 @@ Cluster::~Cluster()
 // ------------------------------------------------------------------------------------------------
 Skin::Skin(uint64_t id, const Element& element, const Document& doc, const std::string& name)
 : Deformer(id,element,doc,name)
-{
+, accuracy( 0.0f ) {
     const Scope& sc = GetRequiredScope(element);
 
     const Element* const Link_DeformAcuracy = sc["Link_DeformAcuracy"];