Skip to content
Snippets Groups Projects

[Cleanup] Fix GCC warning by properly initializing member

Merged René Heß requested to merge cleanup/fvector-member-initialization into master
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -105,7 +105,7 @@ namespace Dune {
//! Constructor making default-initialized vector
constexpr FieldVector()
: _data{}
: _data{{}}
{}
//! Constructor making vector with identical coordinates
Loading