mirror of
https://github.com/OPM/opm-upscaling.git
synced 2025-02-25 18:45:23 -06:00
Merge pull request #196 from pgdr/static_assert-false
usage of static_assert
This commit is contained in:
@@ -42,7 +42,7 @@ typedef Dune::UMFPack<Matrix> LUSolver;
|
||||
#elif defined(HAVE_SUPERLU)
|
||||
typedef Dune::SuperLU<Matrix> LUSolver;
|
||||
#else
|
||||
static_assert("Enable either SuperLU or UMFPACK");
|
||||
static_assert(false, "Enable either SuperLU or UMFPACK");
|
||||
#endif
|
||||
|
||||
//! \brief A linear operator
|
||||
|
||||
Reference in New Issue
Block a user