mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-27 20:59:36 +08:00
Fix compiler warning [-Wsign-compare]
Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
34311179f5
commit
7a218f1d6c
@ -255,7 +255,7 @@ int main(int argc, char **argv) {
|
||||
// Now write the inttemp and pffmtable.
|
||||
trainer->WriteInttempAndPFFMTable(trainer->unicharset(), *unicharset, *shape_table, float_classes,
|
||||
inttemp_file.c_str(), pffmtable_file.c_str());
|
||||
for (int c = 0; c < unicharset->size(); ++c) {
|
||||
for (size_t c = 0; c < unicharset->size(); ++c) {
|
||||
FreeClassFields(&float_classes[c]);
|
||||
}
|
||||
delete[] float_classes;
|
||||
|
Loading…
Reference in New Issue
Block a user