We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e9dfef commit ac17663Copy full SHA for ac17663
src/textord/wordseg.cpp
@@ -345,7 +345,6 @@ int32_t row_words2( //compute space size
345
FCOORD rotation, //for drawing
346
bool testing_on //for debug
347
) {
348
- bool testing_row; //contains testpt
349
bool prev_valid; //if decent size
350
bool this_valid; //current blob big enough
351
int32_t prev_x; //end of prev blob
@@ -375,7 +374,7 @@ int32_t row_words2( //compute space size
375
374
// tprintf("Row smooth factor=%d\n",smooth_factor);
376
prev_valid = false;
377
prev_x = -INT16_MAX;
378
- testing_row = false;
+ const bool testing_row = false;
379
//min blob size
380
min_width = (int32_t) block->pr_space;
381
total_count = 0;
0 commit comments