Skip to content

Commit

Permalink
style: remote unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
tonytonyjan committed Dec 31, 2017
1 parent 536e667 commit 64dd5cc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ext/jaro_winkler/adj_matrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ AdjMatrix *adj_matrix_default() {
size_t length = sizeof(DEFAULT_ADJ_TABLE) / sizeof(char *);
for (size_t i = 0; i < length; i += 2) {
uint64_t code_1, code_2;
size_t dummy_length;
code_1 = *DEFAULT_ADJ_TABLE[i] & 0xff;
code_2 = *DEFAULT_ADJ_TABLE[i + 1] & 0xff;
adj_matrix_add(ret_matrix, code_1, code_2);
Expand Down

0 comments on commit 64dd5cc

Please sign in to comment.