We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff0b56 commit abca191Copy full SHA for abca191
src/ccmain/pagewalk.cpp
@@ -28,9 +28,9 @@ namespace tesseract {
28
* to each word that overlaps the selection_box.
29
*/
30
void Tesseract::process_selected_words(
31
- PAGE_RES* page_res, // blocks to check
32
- TBOX & selection_box,
33
- BOOL8(tesseract::Tesseract::*word_processor)(PAGE_RES_IT* pr_it)) {
+ PAGE_RES* page_res, // blocks to check
+ TBOX& selection_box,
+ bool (tesseract::Tesseract::* word_processor)(PAGE_RES_IT* pr_it)) {
34
for (PAGE_RES_IT page_res_it(page_res); page_res_it.word() != nullptr;
35
page_res_it.forward()) {
36
WERD* word = page_res_it.word()->word;
0 commit comments