dune-fem  2.6-git
arrays.hh
Go to the documentation of this file.
1 #ifndef DUNE_FEM_ARRAYS_HH
2 #define DUNE_FEM_ARRAYS_HH
3 
4 #warning("WARNING: MutableArray defined in dune/fem/space/common/arrays.hh is deprecated. Please use directly DynamicArray defined in dune/fem/storage/dynamicarray.hh.")
5 
7 
8 namespace Dune
9 {
10  namespace Fem
11  {
12  template<typename... Args>
13  using MutableArray = DynamicArray<Args...>;
14  }
15 }
16 
17 #endif // DUNE_FEM_ARRAYS_HH
Definition: bindguard.hh:11
An implementation of DenseVector which uses a C-array of dynamic size as storage.
Definition: dynamicarray.hh:238