Skip to content
Snippets Groups Projects
Commit 9eb64523 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

clang-format

parent c5036262
No related branches found
No related tags found
1 merge request!454Further changes suggested by clang-tidy
......@@ -23,8 +23,7 @@ Lattice3D::Lattice3D(const R3 a, const R3 b, const R3 c) : m_a(a), m_b(b), m_c(c
computeReciprocalVectors();
}
Lattice3D::Lattice3D(const Lattice3D& lattice)
: Lattice3D(lattice.m_a, lattice.m_b, lattice.m_c)
Lattice3D::Lattice3D(const Lattice3D& lattice) : Lattice3D(lattice.m_a, lattice.m_b, lattice.m_c)
{
if (lattice.m_selection_rule)
setSelectionRule(*lattice.m_selection_rule);
......
......@@ -23,7 +23,8 @@ public:
{
for (auto* child : m_nodes)
delete child;
} override;
}
override;
void accept(INodeVisitor* visitor) const override { visitor->visit(this); }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment