mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
octave: Revert use of auto for octave version before 7
This commit is contained in:
@@ -66,7 +66,7 @@ void getActiveCellInfo(int32NDArray& activeCellInfo, const QString &hostName, qu
|
||||
#if OCTAVE_MAJOR_VERSION > 6
|
||||
auto internalMatrixData = (qint32*)activeCellInfo.fortran_vec();
|
||||
#else
|
||||
auto internalMatrixData = (qint32*)activeCellInfo.fortran_vec()->mex_get_data();
|
||||
qint32* internalMatrixData = (qint32*)activeCellInfo.fortran_vec()->mex_get_data();
|
||||
#endif
|
||||
|
||||
QStringList errorMessages;
|
||||
|
||||
Reference in New Issue
Block a user