mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
test_milu: avoid use of sstream
This commit is contained in:
parent
7dce14929b
commit
b031c289bf
@ -56,7 +56,8 @@ void test_milu0(M& A)
|
||||
|
||||
if ( col == colend )
|
||||
{
|
||||
OPM_THROW(std::logic_error, "Missing diagonal entry for row " << irow.index());
|
||||
OPM_THROW(std::logic_error,
|
||||
"Missing diagonal entry for row " + std::to_string(irow.index()));
|
||||
}
|
||||
for (++col ;col != colend; ++col)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user