Skip to content
Snippets Groups Projects
Commit c78c6f14 authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

[el2p] Improve error message, we no longer required a patched PDELab

parent e84fb168
No related branches found
No related tags found
1 merge request!35[el2p] Fix the test if pdelab is not present
...@@ -23,12 +23,11 @@ ...@@ -23,12 +23,11 @@
*/ */
#include <config.h> #include <config.h>
#include <dune/common/precision.hh>
#include <dune/common/version.hh>
#if HAVE_DUNE_PDELAB #if HAVE_DUNE_PDELAB
#include "el2pproblem.hh" #include "el2pproblem.hh"
#endif #endif
#include <dune/common/precision.hh>
#include <dune/common/version.hh>
#include <dumux/common/start.hh> #include <dumux/common/start.hh>
/*! /*!
...@@ -69,8 +68,8 @@ int main(int argc, char** argv) ...@@ -69,8 +68,8 @@ int main(int argc, char** argv)
return Dumux::start<TypeTag>(argc, argv, usage); return Dumux::start<TypeTag>(argc, argv, usage);
#else // HAVE_DUNE_PDELAB #else // HAVE_DUNE_PDELAB
#warning You need to have dune-pdelab installed and patched to run this test. #warning You need to have dune-pdelab to run this test.
std::cerr << "You need to have dune-pdelab installed and patched to run this test." << std::endl; std::cerr << "You need to have dune-pdelab to run this test." << std::endl;
return 77; return 77;
#endif // HAVE_DUNE_PDELAB #endif // HAVE_DUNE_PDELAB
} }
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