Skip to content
Snippets Groups Projects
Commit c161b81e authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[examples][diffusion] avoid initlist initializer on fvector

parent 22393bc9
No related branches found
No related tags found
1 merge request!3660Cleanup/diffusion example
...@@ -99,7 +99,7 @@ public: ...@@ -99,7 +99,7 @@ public:
// We prescribe zero flux over all of the boundary // We prescribe zero flux over all of the boundary
NumEqVector neumannAtPos(const GlobalPosition& globalPos) const NumEqVector neumannAtPos(const GlobalPosition& globalPos) const
{ return { 0.0 }; } { return NumEqVector(0.0); }
// The diffusion coefficient interface is used in the local residual (see Part 1). // The diffusion coefficient interface is used in the local residual (see Part 1).
// We can name this interface however we want as long as we adapt the calling site // We can name this interface however we want as long as we adapt the calling site
......
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