mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-13 12:19:12 +08:00
an attempt to fix a compilation issue with -std=c++0x
This commit is contained in:
parent
7feb644620
commit
e7318148b5
@ -52,7 +52,7 @@ inline int umfpack_symbolic(int n_row,int n_col,
|
|||||||
const int Ap[], const int Ai[], const std::complex<double> Ax[], void **Symbolic,
|
const int Ap[], const int Ai[], const std::complex<double> Ax[], void **Symbolic,
|
||||||
const double Control [UMFPACK_CONTROL], double Info [UMFPACK_INFO])
|
const double Control [UMFPACK_CONTROL], double Info [UMFPACK_INFO])
|
||||||
{
|
{
|
||||||
return umfpack_zi_symbolic(n_row,n_col,Ap,Ai,&Ax[0].real(),0,Symbolic,Control,Info);
|
return umfpack_zi_symbolic(n_row,n_col,Ap,Ai,&(Ax[0].real()),0,Symbolic,Control,Info);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline int umfpack_numeric( const int Ap[], const int Ai[], const double Ax[],
|
inline int umfpack_numeric( const int Ap[], const int Ai[], const double Ax[],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user