Skip to content
Snippets Groups Projects

Necessary cleanup for warning-free work with 2.6

Merged Dominic Kempf requested to merge feature/cleanup-for-2.6 into master
10 files
+ 38
20
Compare changes
  • Side-by-side
  • Inline
Files
10
@@ -4,9 +4,10 @@
#include "config.h"
#include <array>
#include <iostream>
#include <dune/common/array.hh>
#include <dune/common/filledarray.hh>
#include <dune/common/parallel/mpihelper.hh>
#include <dune/grid/yaspgrid.hh>
#include <dune/grid/io/file/vtk/vtksequencewriter.hh>
@@ -71,7 +72,7 @@ int main(int argc, char** argv)
auto L = Dune::FieldVector<double,dim>(1.0);
// the number of cells per direction
auto N = Dune::fill_array<int,dim>(32);
auto N = Dune::filledArray<dim, int>(32);
// We don't want a periodic grid in any direction
auto periodic = std::bitset<dim>(false);
Loading