Skip to content

Commit

Permalink
Remove dead variable (#984)
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-baker committed Mar 30, 2022
1 parent e754c90 commit 627ee45
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/vkscript/command_parser.cc
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,6 @@ Result CommandParser::ParseValues(const std::string& name,
std::vector<Value>* values) {
assert(values);

uint32_t row_index = 0;
auto token = tokenizer_->NextToken();
size_t seen = 0;
while (!token->IsEOL() && !token->IsEOS()) {
Expand Down Expand Up @@ -515,7 +514,6 @@ Result CommandParser::ParseValues(const std::string& name,
values->push_back(v);
token = tokenizer_->NextToken();

++row_index;
++seen;
}

Expand Down

0 comments on commit 627ee45

Please sign in to comment.