Skip to content
Snippets Groups Projects

Move various implementation classes into the 'Imp' namespace

Merged Oliver Sander requested to merge feature/move-implementation-to-imp into master
7 files
+ 48
38
Compare changes
  • Side-by-side
  • Inline
Files
7
@@ -8,8 +8,8 @@ using namespace Dune;
int main()
{
base_array<double> v1(10);
base_array<double> v2 = v1;
Imp::base_array<double> v1(10);
Imp::base_array<double> v2 = v1;
v1.resize(20);
Loading