Skip to content
Snippets Groups Projects
Commit 4d5c2e35 authored by Oliver Sander's avatar Oliver Sander
Browse files

Remove STD_BVP_Configure from ugwrapper.hh

Now that STD_BVP_Configure has a domain* argument, ADL is enough
to find the correct method in dune-uggrid, and the wrapper in
ugwrapper.hh is not needed anymore.
parent c6626a4f
No related tags found
1 merge request!755Simplify UGGrid domain creation
......@@ -420,7 +420,7 @@ createGrid()
if (BVP_SetBVPDesc(theBVP,&theBVPDesc) != 0)
DUNE_THROW(GridError, "Calling BVP_SetBVPDesc failed!");
if (UG_NS<dimworld>::STD_BVP_Configure(2,const_cast<char**>(configureArgs_c),ugDomain))
if (STD_BVP_Configure(2,const_cast<char**>(configureArgs_c),ugDomain))
DUNE_THROW(GridError, "Calling STD_BVP_Configure failed!");
// Make sure there is no old multigrid object with the same name.
......
......@@ -1073,11 +1073,6 @@ namespace Dune {
numOfUserFct, userfct);
}
static int STD_BVP_Configure(int argc, char **argv, UG_NAMESPACE::domain *theDomain)
{
return UG_NAMESPACE :: STD_BVP_Configure(argc, argv, theDomain);
}
//! Set the current boundary value problem
static void Set_Current_BVP(void** thisBVP) {
UG_NAMESPACE ::Set_Current_BVP(thisBVP);
......
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