diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-02-24 21:44:25 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-02-25 19:58:17 +0100 |
| commit | d990a54912ceb1d33db36ea4b5585c8261ce1bc7 (patch) | |
| tree | 738b1165dd56881725c7aeb231fce5b602266087 /src | |
| parent | 17932886d5c97de1aec6de6c6e4fb57aa456bf3e (diff) | |
Remove unused variable.
Diffstat (limited to 'src')
| -rw-r--r-- | src/language_tag.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/language_tag.cc b/src/language_tag.cc index 8faf226c..037814f9 100644 --- a/src/language_tag.cc +++ b/src/language_tag.cc @@ -432,7 +432,6 @@ load_language_tag_list (boost::filesystem::path tags_directory, string name, std } char buffer[512]; - int i = 0; while (!f.eof()) { char* r = f.gets(buffer, sizeof(buffer)); if (r == 0) { @@ -447,7 +446,6 @@ load_language_tag_list (boost::filesystem::path tags_directory, string name, std string b = buffer; trim (b); add (a, b); - ++i; } } |
