sliencing a few shadowing warnings.

This commit is contained in:
Kai Bao
2016-05-06 17:59:00 +02:00
parent 60b00a0ddf
commit 8236a32aee
3 changed files with 7 additions and 7 deletions

View File

@@ -662,11 +662,11 @@ namespace Opm
/**
* Constructor which sets all members
*/
AutoDiffMatrix(AudoDiffMatrixType type, int rows, int cols,
AutoDiffMatrix(AudoDiffMatrixType type, int rows_arg, int cols_arg,
DiagRep diag=DiagRep(), SparseRep sparse=SparseRep())
: type_(type),
rows_(rows),
cols_(cols),
rows_(rows_arg),
cols_(cols_arg),
diag_(diag),
sparse_(sparse)
{