Skip to content

Commit

Permalink
Merge pull request #90 from rtobar/master
Browse files Browse the repository at this point in the history
Removing unused variables
  • Loading branch information
kaneplusplus committed Nov 16, 2018
2 parents e73b6d6 + df59440 commit 50d4472
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bigmemory.cpp
Expand Up @@ -1083,7 +1083,7 @@ SEXP get_order( MatrixAccessorType m, SEXP columns, SEXP naLast,
index_type col;
OrderVecs ov;
ov.reserve(m.nrow());
typename OrderVecs::iterator begin, end, it, naIt;
typename OrderVecs::iterator it;
ValueType val;
for (k=Rf_length(columns)-1; k >= 0; --k)
{
Expand Down Expand Up @@ -1172,7 +1172,7 @@ SEXP get_order2( MatrixAccessorType m, SEXP rows, SEXP naLast,
index_type row;
OrderVecs ov;
ov.reserve(m.ncol());
typename OrderVecs::iterator begin, end, it, naIt;
typename OrderVecs::iterator it;
ValueType val;
for (k=Rf_length(rows)-1; k >= 0; --k)
{
Expand Down

0 comments on commit 50d4472

Please sign in to comment.