Skip to content
Snippets Groups Projects
Commit e1ad86dc authored by Andreas Dedner's avatar Andreas Dedner Committed by dedner
Browse files

small bug fixes to make make check happy

parent fb0c5ef3
No related branches found
No related tags found
No related merge requests found
......@@ -176,6 +176,12 @@ namespace Dune
return convert( fromGrid, cellData, ordering_ );
}
template <class FromGrid>
Grid* convert( const FromGrid& fromGrid )
{
std::vector<int> dummy(0);
return convert( fromGrid, dummy, ordering_ );
}
protected:
template <int codim, class Entity>
int subEntities ( const Entity& entity ) const
......
......@@ -13,7 +13,7 @@
// include serial part of ALUGrid
#include <dune/alugrid/common/declaration.hh>
#include <dune/alugrid/common/alugrid_assert.hh>
#include <dune/alugrid/common/objectfactory.hh>
// #include <dune/alugrid/common/objectfactory.hh>
#include <dune/alugrid/3d/grid.hh>
#include <dune/grid/io/file/dgfparser/parser.hh>
......
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