Skip to content
Snippets Groups Projects
Commit 45a52eb9 authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

WRG: unused variable

parent 33301625
No related branches found
No related tags found
No related merge requests found
......@@ -744,12 +744,8 @@ void vect2scal::Eval(mup::ptr_val_type &ret, const mup::ptr_val_type *a_pArg, in
// Get the argument from the argument input vector
const mup::matrix_type a = a_pArg[0]->GetArray();
int nbrows = a.GetRows();
int nbcols = a.GetCols();
assert(nbrows == 1);
assert(nbcols == 1);
assert(a.GetRows() == 1);
assert(a.GetCols() == 1);
mup::float_type res;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment