Skip to content
Snippets Groups Projects
Commit 931e53e9 authored by andreas's avatar andreas
Browse files

fixed uninitialized value in BackboneTrace

parent a8d3a4ea
Branches
Tags
No related merge requests found
......@@ -123,13 +123,15 @@ private:
BackboneTrace::BackboneTrace():
view_(),
node_list_list_(),
seq_hack_(false)
seq_hack_(false),
twist_hack_(false)
{}
BackboneTrace::BackboneTrace(const mol::EntityView& ent):
view_(ent),
node_list_list_(),
seq_hack_(false)
seq_hack_(false),
twist_hack_(false)
{
Rebuild();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment