mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
Try to fix netlist build visual studio 2015
This commit is contained in:
parent
913ab1e140
commit
f7dd940081
@ -512,7 +512,7 @@ int matrix_solver_sm_t<m_N, _storage_N>::solve_non_dynamic(ATTR_UNUSED const boo
|
||||
}
|
||||
else
|
||||
{
|
||||
if (not incremental)
|
||||
if (!incremental)
|
||||
{
|
||||
for (int row = 0; row < iN; row ++)
|
||||
for (int k = 0; k < iN; k++)
|
||||
|
@ -596,7 +596,7 @@ int matrix_solver_w_t<m_N, _storage_N>::solve_non_dynamic(ATTR_UNUSED const bool
|
||||
}
|
||||
/* Back substitution */
|
||||
//inv(H) w = t w = H t
|
||||
nl_double t[rowcount];
|
||||
nl_double *t=new nl_double[rowcount];
|
||||
for (int j = rowcount - 1; j >= 0; j--)
|
||||
{
|
||||
nl_double tmp = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user