Skip to content
Snippets Groups Projects
Commit a3ea4535 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL] Remove unneeded TemplateElement dtor.

The explicit default dtor makes the intel compiler 2017 unhappy
and it is not needed; the base class Element has an explicit
virtual dtor.
parent 86863c4e
No related branches found
No related tags found
No related merge requests found
......@@ -59,9 +59,6 @@ public:
/// Copy constructor
TemplateElement(const TemplateElement &e);
/// Destructor
~TemplateElement() override = default;
/// Returns a copy of this object.
Element* clone() const override { return new TemplateElement(*this); }
Element* clone(Node** nodes, std::size_t id) const override
......
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