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

[MatL] Solids; Move up default impl of push back.

parent 97e32152
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,6 @@ public:
struct MaterialStateVariables
: public MechanicsBase<DisplacementDim>::MaterialStateVariables
{
void pushBackState() override {}
};
std::unique_ptr<
......
......@@ -126,7 +126,6 @@ public:
struct MaterialStateVariables
: public MechanicsBase<DisplacementDim>::MaterialStateVariables
{
void pushBackState() override {}
};
std::unique_ptr<
......
......@@ -57,7 +57,7 @@ struct MechanicsBase
struct MaterialStateVariables
{
virtual ~MaterialStateVariables() = default;
virtual void pushBackState() = 0;
virtual void pushBackState(){};
};
/// Polymorphic creator for MaterialStateVariables objects specific for a
......
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