mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
convert users of the ASSERT and the ASSERT2 macros to standard assert()
This commit is contained in:
@@ -128,7 +128,7 @@ namespace Opm
|
||||
double* dAdp) const
|
||||
{
|
||||
const int np = numPhases();
|
||||
ASSERT(np <= 2);
|
||||
assert(np <= 2);
|
||||
double B[2]; // Must be enough since component classes do not handle more than 2.
|
||||
pvt_.B(1, 0, 0, B);
|
||||
// Compute A matrix
|
||||
|
||||
Reference in New Issue
Block a user