diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-03-03 07:43:23 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-03-03 07:43:23 +0100 |
commit | 3eb6cd3cd92928c907b4d19947ecc51d4b7b28a7 (patch) | |
tree | 86b7a606f22bf983e610d92c8ecf6a7ea4449071 /tests/unit/core/test-arraylist.cpp | |
parent | f6941c20eb53ba34569493980008e3c4347a1377 (diff) | |
download | weechat-3eb6cd3cd92928c907b4d19947ecc51d4b7b28a7.zip |
tests: remove unused variables
Diffstat (limited to 'tests/unit/core/test-arraylist.cpp')
-rw-r--r-- | tests/unit/core/test-arraylist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/core/test-arraylist.cpp b/tests/unit/core/test-arraylist.cpp index 00f1eb525..e4ab3a1a7 100644 --- a/tests/unit/core/test-arraylist.cpp +++ b/tests/unit/core/test-arraylist.cpp @@ -75,7 +75,7 @@ void test_arraylist (int initial_size, int sorted, int allow_duplicates) { struct t_arraylist *arraylist; - int i, index, index_insert, expected_pos; + int i, index, index_insert; void *pointer; const char *item_aaa = "aaa"; const char *item_abc = "abc"; |